Skip to content

Commit

Permalink
Merge pull request #1746 from vinetsky/2.1/bug/1084944
Browse files Browse the repository at this point in the history
[#1084944] Fix text and icon colors on form constructor
  • Loading branch information
stasguryev authored Jul 4, 2022
2 parents e8ca40f + de5cb1e commit 54147ce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions resources/styles/popout.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
min-width: auto;
}

.toolbar-btn .popout__action.open {
color: var(--theme-colors__btn);
background-color: var(--theme-colors__highlight);
outline: 3px solid var(--theme-colors__highlight);
}

.popout__action.open .anchor {
transform: rotate(180deg);
}
Expand Down
6 changes: 6 additions & 0 deletions src/layout/resources/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@

/* Toolabar ajustable buttons */

.toolbar-panel_container .toolbar-btn,
.toolbar-buttons_container__adjust .toolbar-btn {
color: var(--theme-colors__btn);
}
Expand Down Expand Up @@ -464,6 +465,11 @@
color: var(--theme-colors__text);
}

.toolbar-buttons_container__adjust .toolbar-btn:hover,
.toolbar-buttons_container__adjust .toolbar-btn.open {
background-color: var(--theme-colors__highlight);
}

.toolbar-buttons_container__adjust .toolbar-btn:hover .toolbar-btn__text,
.toolbar-buttons_container__adjust .toolbar-btn.open .toolbar-btn__text,
.toolbar-buttons_container__adjust .toolbar-btn:hover .toolbar__icons_arrow,
Expand Down

0 comments on commit 54147ce

Please sign in to comment.