Skip to content

Commit

Permalink
feat(layer-selector-ui): add styles for wms query layer toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksueiR committed Apr 29, 2015
1 parent ae5c7ec commit cb52036
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/css/side-panel/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,15 @@

&.query {
text-align: center;
color: @layer-toggle-off-color;

&:hover, &.focused {
color: @layer-toggle-hover-color;
}

&.checked {
color: @layer-toggle-on-color;
}
}

&:hover, &.focused {
Expand Down Expand Up @@ -264,7 +273,6 @@
.record-row .record-details,
.record-row .record-controls,
.sort-handle {

color: #FFFFFF !important;

button {
Expand All @@ -286,7 +294,7 @@

td {
color: #FFFFFF !important;

> button {
color: #FFFFFF !important;
outline-color: #fff !important;
Expand Down Expand Up @@ -380,7 +388,6 @@
.checkbox-custom-inverted() {
.checkbox-custom {
&.checkbox-button button {

color: @light-light-grey-color !important;

&:hover {
Expand Down
6 changes: 6 additions & 0 deletions src/css/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@

@denim-color: #3e434b;


@layer-toggle-hover-color: #7f7f7f;
@layer-toggle-off-color: #d2d2d2;
@layer-toggle-on-color: #000;


// Shadows

@upper-shadow: 0 4px 5px -5px #000000 inset;
Expand Down

0 comments on commit cb52036

Please sign in to comment.