33 lines
865 B
CSS
33 lines
865 B
CSS
/* This stylesheet should be used to add your custom styles to the back-office without using the Sass sources. It will be loaded after all the default styles.
|
|
You should NOT edit any other exisiting back-office CSS file manually: they are generated by the Sass preprocessor: http://www.sass-lang.com/ . */
|
|
|
|
.defaultForm .result {}
|
|
.defaultForm .result li {
|
|
list-style: none;
|
|
padding: 5px 10px;
|
|
}
|
|
.defaultForm .result li span {
|
|
margin-left: 10px;
|
|
}
|
|
.defaultForm .searchResult {
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 50%;
|
|
z-index: 3;
|
|
}
|
|
.defaultForm .searchResult ul {
|
|
background: #fff;
|
|
border-radius: 5px;
|
|
margin: 0px;
|
|
padding: 0;
|
|
border:1px solid #ccc;
|
|
}
|
|
.defaultForm .searchResult ul li {
|
|
cursor: pointer;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 5px 10px;
|
|
}
|
|
.defaultForm .searchResult ul li:hover {
|
|
background: #f1f1f1;
|
|
} |