GTK3: Fix floating-bar transparent text for light theme

This commit is contained in:
Daniel Ruiz de Alegría 2020-07-08 18:43:53 +02:00
parent 71d7ce57c6
commit 101ae7c598
4 changed files with 8 additions and 0 deletions

View File

@ -5191,12 +5191,14 @@ filechooser placessidebar.sidebar,
padding-right: 20px; }
.floating-bar {
color: #ffffff;
background-color: #2777ff;
border-color: #00348d;
margin: 10px;
box-shadow: 0 1px 4px rgba(39, 119, 255, 0.5);
transition: background-color 200ms ease-out; }
.floating-bar:backdrop {
color: inherit;
box-shadow: none;
border-color: #0d0e11; }
.floating-bar.bottom.left, .floating-bar.bottom.right {

View File

@ -5191,12 +5191,14 @@ filechooser placessidebar.sidebar,
padding-right: 20px; }
.floating-bar {
color: #ffffff;
background-color: #2777ff;
border-color: #00348d;
margin: 10px;
box-shadow: 0 1px 4px rgba(39, 119, 255, 0.5);
transition: background-color 200ms ease-out; }
.floating-bar:backdrop {
color: inherit;
box-shadow: none;
border-color: #0d0e11; }
.floating-bar.bottom.left, .floating-bar.bottom.right {

View File

@ -5212,12 +5212,14 @@ filechooser placessidebar.sidebar,
padding-right: 20px; }
.floating-bar {
color: #ffffff;
background-color: #2777ff;
border-color: #0051da;
margin: 10px;
box-shadow: 0 1px 4px rgba(39, 119, 255, 0.5);
transition: background-color 200ms ease-out; }
.floating-bar:backdrop {
color: inherit;
box-shadow: none;
border-color: #d9d9d9; }
.floating-bar.bottom.left, .floating-bar.bottom.right {

View File

@ -56,6 +56,7 @@ filechooser,
}
.floating-bar {
color: $selected_fg_color;
background-color: $selected_bg_color;
border-color: $selected_borders_color;
margin: 10px;
@ -63,6 +64,7 @@ filechooser,
transition: background-color $backdrop_transition;
&:backdrop {
color: inherit;
box-shadow: none;
border-color: $borders_color;
}