Used SCSS variables instead of hardcoded value for color and moved code from CSS to SCSS file.

This commit is contained in:
Akshay Joshi
2018-09-11 11:18:37 +05:30
parent 532cbe216a
commit 9c5e42c7a6
2 changed files with 14 additions and 15 deletions

View File

@@ -60,18 +60,3 @@
.pgadmin_header_logo { .pgadmin_header_logo {
cursor: default; cursor: default;
} }
.pg-toolbar-btn {
width: 25px !important;
height: 23px !important;
border: 1px solid !important;
background-color: #fff !important;
font-size: 14px !important;
color: #333 !important;
border-color: #adadad !important;
}
.pg-toolbar-btn:hover {
border: 1px solid $color-gray-light !important;
background-color: #e6e6e6 !important;
}

View File

@@ -43,3 +43,17 @@ samp,
text-align: center; text-align: center;
color: $color-fg-inverse; color: $color-fg-inverse;
} }
.pg-toolbar-btn:hover {
border: 1px solid $color-gray-light !important;
background-color: $color-gray-lighter !important;
}
.pg-toolbar-btn {
width: 25px !important;
height: 23px !important;
background-color: $color-bg !important;
font-size: 14px !important;
color: $color-gray-darker !important;
border: 1px solid $color-gray-light !important;
}