Files
opensourcepos/public/css/bootstrap.autocomplete.css
BudsieBuds e83c23cf0c Improve code style and PSR-12 compliance (#4204)
* Improve code style and PSR-12 compliance
- refactored code formatting to adhere to PSR-12 guidelines
- standardized coding conventions across the codebase
- added missing framework files and reverted markup changes
- reformatted arrays for enhanced readability
- updated language files for consistent styling and clarity
- minor miscellaneous improvements
2025-05-02 19:37:06 +02:00

52 lines
1.3 KiB
CSS

.ui-autocomplete {
position: absolute;
top: 100%;
left: 0;
z-index: 1050;
float: left;
display: none;
min-width: 160px;
_width: 160px;
padding: 5px 0;
margin: 2px 0 0 0;
list-style: none;
font-size: 13px;
background-color: #ffffff;
border-color: #cccccc;
border-color: rgba(0, 0, 0, 0.15);
border-style: solid;
border-width: 1px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.175);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.175);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.175);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
*border-right-width: 2px;
*border-bottom-width: 2px;
}
.ui-autocomplete .ui-menu-item>a.ui-corner-all {
display: block;
padding: 3px 15px;
clear: both;
font-weight: normal;
line-height: 18px;
color: #7b8a8b;
white-space: nowrap;
}
.ui-autocomplete .ui-menu-item>a.ui-corner-all.ui-state-hover,
.ui-autocomplete .ui-menu-item>a.ui-corner-all.ui-state-active {
color: #ffffff;
text-decoration: none;
background-color: #f5f5f5;
border-radius: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
background-image: none;
}