Small fix for autocomplete list

pull/5742/merge
Aleksander Machniak 8 years ago
parent 17bcc8c705
commit 1d35d1a20c

@ -40,7 +40,6 @@
@color-toolbarmenu-hover: white; @color-toolbarmenu-hover: white;
@color-toolbarmenu-hover-background: blue; @color-toolbarmenu-hover-background: blue;
// Drag-n-drop layer // Drag-n-drop layer
@color-drag-layer: white; @color-drag-layer: white;
@color-drag-layer-background: #444; @color-drag-layer-background: #444;

@ -1,5 +1,7 @@
/*** List and treelist widgets ***/ /*** List and treelist widgets ***/
@var-listing-line-height: 2.4em;
.listing { .listing {
tbody td, tbody td,
li { li {
@ -7,6 +9,7 @@
border-bottom: 1px solid #f4f4f4; border-bottom: 1px solid #f4f4f4;
cursor: default; cursor: default;
font-weight: normal; font-weight: normal;
line-height: @var-listing-line-height;
} }
tbody td, tbody td,
@ -17,7 +20,7 @@
padding: 0 0.5em; padding: 0 0.5em;
white-space: nowrap; white-space: nowrap;
vertical-align: middle; vertical-align: middle;
line-height: 2.4em; line-height: @var-listing-line-height;
color: @color-list; color: @color-list;
} }
@ -95,7 +98,7 @@ ul.listing {
position: absolute; position: absolute;
top: 0; top: 0;
right: 0.2em; right: 0.2em;
height: 2.4em; height: @var-listing-line-height;
vertical-align: middle; vertical-align: middle;
} }
} }

Loading…
Cancel
Save