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

View File

@ -59,6 +59,9 @@
@list-srch-inpt-ph-txt: @default-icon;
@list-srch-inpt-bord: @default-second-border;
@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
@tooltip-bg: @default-interface-txt;