Moved some explicit color definitions into our default colors less file for a few list styles.

This commit is contained in:
Michael Abashian
2016-01-14 17:30:26 -05:00
parent 2fbc50093f
commit 576192c21f
2 changed files with 7 additions and 4 deletions

View File

@@ -211,14 +211,14 @@ table, tbody {
height: 32px; height: 32px;
width: 32px; width: 32px;
border-left: 1px solid @list-srch-inpt-bord; border-left: 1px solid @list-srch-inpt-bord;
color: #B7B7B7; color: @list-srch-btn-icon;
float: right; float: right;
position: relative; position: relative;
top: -33px; top: -33px;
left: -1px; left: -1px;
z-index: 10; z-index: 10;
font-size: 16px; font-size: 16px;
background-color: #FFFFFF; background-color: @list-srch-btn-bg;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
@@ -228,6 +228,6 @@ table, tbody {
.List-searchInputIcon:hover { .List-searchInputIcon:hover {
cursor: pointer; cursor: pointer;
background-color: #FAFAFA; background-color: @list-srch-btn-hov-bg;
color: #B7B7B7; color: @list-srch-btn-icon;
} }

View File

@@ -59,6 +59,9 @@
@list-srch-inpt-ph-txt: @default-icon; @list-srch-inpt-ph-txt: @default-icon;
@list-srch-inpt-bord: @default-second-border; @list-srch-inpt-bord: @default-second-border;
@list-srch-inpt-focus: @default-link; @list-srch-inpt-focus: @default-link;
@list-srch-btn-icon: @default-icon;
@list-srch-btn-bg: @default-bg;
@list-srch-btn-hov-bg: @default-tertiary-bg;
// tooltups // tooltups
@tooltip-bg: @default-interface-txt; @tooltip-bg: @default-interface-txt;