Run scss-lint to fix some errors in autocomplete_overrides.scss

This commit is contained in:
iagirre
2017-09-22 08:09:03 +02:00
parent c01208b203
commit 0948959a65

View File

@@ -3,18 +3,23 @@
/* Autocomplete
----------------------------------*/
.ui-autocomplete { position: absolute; cursor: default; }
.ui-autocomplete {
position: absolute;
cursor: default;
}
/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
* html .ui-autocomplete {
width: 1px;
} /* without this, the menu expands to 100% in IE6 */
/* Menu
----------------------------------*/
.ui-menu {
list-style:none;
list-style: none;
padding: $line-height / 4 $line-height / 3;
display:block;
background: white;
display: block;
background: #fff;
border: 1px solid $border;
font-size: $small-font-size;
@@ -25,10 +30,11 @@
position: relative;
}
.ui-state-hover, .ui-state-active {
.ui-state-hover,
.ui-state-active {
background: #ececec;
border-radius: rem-calc(6);
}
}
}
}