Fix popovers buttons issue on backdrop state

This commit is contained in:
EliverLara
2019-06-12 13:56:32 -05:00
parent 0cd277545a
commit 0b3bb72b5d
3 changed files with 10 additions and 6 deletions

View File

@@ -288,8 +288,9 @@ button {
notebook > header > tabs > arrow:hover:active,
button.flat:hover:active {
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
notebook > header > tabs > arrow.image-button:hover,
button.flat.image-button:hover {
notebook > header > tabs > arrow.image-button:hover, notebook > header > tabs > arrow.image-button:hover:backdrop,
button.flat.image-button:hover,
button.flat.image-button:hover:backdrop {
background-color: #00D3A7;
color: #fefefe; }
notebook > header > tabs > arrow:hover,

View File

@@ -288,8 +288,9 @@ button {
notebook > header > tabs > arrow:hover:active,
button.flat:hover:active {
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
notebook > header > tabs > arrow.image-button:hover,
button.flat.image-button:hover {
notebook > header > tabs > arrow.image-button:hover, notebook > header > tabs > arrow.image-button:hover:backdrop,
button.flat.image-button:hover,
button.flat.image-button:hover:backdrop {
background-color: #00D3A7;
color: #fefefe; }
notebook > header > tabs > arrow:hover,

View File

@@ -48,8 +48,10 @@ button {
&:active { transition: $button_transition; }
}
&.image-button:hover {
background-color: $selected_bg_color;
color: $selected_fg_color;
&, &:backdrop {
background-color: $selected_bg_color;
color: $selected_fg_color;
}
}
}