fix color contrast of nav

This commit is contained in:
John Mitchell 2018-11-19 12:35:55 -05:00
parent a3bbe308a8
commit 11adcb9800
No known key found for this signature in database
GPG Key ID: FE6A9B5BD4EB5C94
2 changed files with 7 additions and 5 deletions

View File

@ -261,7 +261,7 @@
.at-SettingsSubPane-content {
display: none;
position: absolute;
background-color: @at-gray-848992;
background-color: @at-color-side-nav-background;
min-width: 140px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
bottom: 0px;
@ -286,11 +286,11 @@
// hover stuff
.at-SettingsSubPane-content a:hover {
background-color: @at-gray-b7;
background-color: @at-color-side-nav-item-background-hover;
}
.at-SettingsSubPane.at-SettingsSubPane--visible .at-SettingsSubPane-content {
display: block;
}
.at-SettingsSubPane.at-SettingsSubPane--visible .nav-button {
background-color: @at-gray-b7;
background-color: @at-color-side-nav-item-background-hover;
}

View File

@ -30,7 +30,9 @@
@at-gray-b7: #b7b7b7;
@at-gray-a9: #a9a9a9;
@at-gray-848992: #848992;
@at-gray-76: #767676;
@at-gray-70: #707070;
@at-gray-48: #484848;
@at-gray-161b1f: #161b1f;
@at-white: #ffffff;
@ -170,9 +172,9 @@
@at-color-top-nav-item-icon: @at-gray-848992;
@at-color-top-nav-item-icon-socket-outline: @at-white;
@at-color-top-nav-item-background-hover: @at-gray-fa;
@at-color-side-nav-background: @at-gray-848992;
@at-color-side-nav-background: @at-gray-48;
@at-color-side-nav-content: @at-white;
@at-color-side-nav-item-background-hover: @at-gray-b7;
@at-color-side-nav-item-background-hover: @at-gray-76;
@at-color-side-nav-item-border-hover: @at-white;
@at-color-side-nav-item-icon: @at-white;
@at-color-side-nav-item-spacer: @at-gray-d7;