mirror of
https://github.com/horst3180/arc-theme.git
synced 2024-10-27 19:04:02 +00:00
fixes for GtkFileChooser
This commit is contained in:
parent
026f409ecb
commit
42297dde59
@ -2,8 +2,6 @@
|
||||
color: $header_border; //fixes separator in gnome-tweak-tool
|
||||
}
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box { background-color: $bg_color } // fix for non gnome environments
|
||||
|
||||
NemoWindow GtkEventBox { background-color: $bg_color; } // fixes nemo statusbar
|
||||
|
||||
GtkFileChooserDialog *,
|
||||
@ -85,8 +83,33 @@ MarlinViewWindow {
|
||||
.pane-separator { background-color: $dark_sidebar_border; }
|
||||
}
|
||||
|
||||
// Yeah, this is ugly, but prevents a transparent background in the image preview box
|
||||
GtkFileChooserDialog GtkPaned > .vertical > .horizontal { background-color: $bg_color; }
|
||||
GtkFileChooserDialog {
|
||||
|
||||
&.background.csd { background-color: $dark_sidebar_bg }
|
||||
.sidebar { background-color: transparent }
|
||||
|
||||
// Yeah, this is ugly, but prevents a transparent background in the image preview box
|
||||
GtkPaned > .vertical > .horizontal { background-color: $bg_color; }
|
||||
|
||||
// fix for non gnome environments
|
||||
.dialog-action-box { background-color: $bg_color }
|
||||
|
||||
.dialog-vbox > .frame {
|
||||
color: $dark_sidebar_fg;
|
||||
border-color: transparent;
|
||||
}
|
||||
.action-bar.frame {
|
||||
background-color: transparent;
|
||||
border-color: if($variant =='light', darken($dark_sidebar_bg, 7%), darken($dark_sidebar_bg, 15%));
|
||||
}
|
||||
|
||||
.action-bar.frame,
|
||||
.dialog-vbox > .frame {
|
||||
.button { @extend %dark_sidebar_button; }
|
||||
|
||||
GtkLabel, GtkComboBox { color: $dark_sidebar_fg; }
|
||||
}
|
||||
}
|
||||
|
||||
// Gedit sidebar
|
||||
GeditWindow.background.csd {
|
||||
@ -180,15 +203,7 @@ GeditWindow.background.csd GeditFileBrowserWidget {
|
||||
background-color: transparent;
|
||||
border-color: darken($dark_sidebar_bg, 7%);
|
||||
|
||||
.button {
|
||||
@include button(undecorated);
|
||||
color: $dark_sidebar_fg;
|
||||
border: 1px solid transparent;
|
||||
|
||||
&:hover { border: 1px solid $selected_bg_color; }
|
||||
&:active, &:checked { @include button(active); }
|
||||
&:insensitive { color: transparentize($dark_sidebar_fg, 0.6); }
|
||||
}
|
||||
.button { @extend %dark_sidebar_button; }
|
||||
GtkComboBox { color: $dark_sidebar_fg; }
|
||||
}
|
||||
}
|
||||
@ -204,24 +219,10 @@ GeditWindow.background.csd GeditFileBrowserView.view {
|
||||
}
|
||||
}
|
||||
|
||||
// Filechooser bottom bar
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: darken($dark_sidebar_bg, 2%);
|
||||
border-color: if($variant =='light', darken($dark_sidebar_bg, 7%), darken($dark_sidebar_bg, 15%));
|
||||
%dark_sidebar_button {
|
||||
@include button(osd);
|
||||
|
||||
GtkLabel { color: $dark_sidebar_fg; }
|
||||
|
||||
.button {
|
||||
@include button(undecorated);
|
||||
|
||||
&:hover { border: 1px solid $selected_bg_color; }
|
||||
&:active, &:checked {
|
||||
border: 1px solid $selected_bg_color;
|
||||
color: $selected_fg_color;
|
||||
background-color: $selected_bg_color;
|
||||
}
|
||||
&:insensitive { color: transparentize($dark_sidebar_fg, 0.6); }
|
||||
}
|
||||
|
||||
GtkComboBox { color: $dark_sidebar_fg; }
|
||||
&:hover { @include button(osd-hover) }
|
||||
&:active, &:checked { @include button(osd-active); }
|
||||
&:insensitive { @include button(osd-insensitive); }
|
||||
}
|
||||
|
@ -3360,9 +3360,6 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: rgba(36, 39, 45, 0.97); }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #444852; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
background-color: #444852; }
|
||||
|
||||
@ -3601,8 +3598,24 @@ NemoWindow .pane-separator,
|
||||
MarlinViewWindow .pane-separator {
|
||||
background-color: rgba(46, 49, 56, 0.95); }
|
||||
|
||||
GtkFileChooserDialog.background.csd {
|
||||
background-color: rgba(69, 74, 84, 0.95); }
|
||||
GtkFileChooserDialog .sidebar {
|
||||
background-color: transparent; }
|
||||
GtkFileChooserDialog GtkPaned > .vertical > .horizontal {
|
||||
background-color: #444852; }
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #444852; }
|
||||
GtkFileChooserDialog .dialog-vbox > .frame {
|
||||
color: #A8ADB5;
|
||||
border-color: transparent; }
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: transparent;
|
||||
border-color: rgba(35, 37, 42, 0.95); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkLabel,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
GeditWindow.background.csd {
|
||||
background-color: transparent; }
|
||||
@ -3674,21 +3687,6 @@ GeditWindow.background.csd GeditFileBrowserWidget {
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal {
|
||||
background-color: transparent;
|
||||
border-color: rgba(53, 57, 65, 0.95); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #A8ADB5;
|
||||
border: 1px solid transparent; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-color: #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
@ -3700,25 +3698,31 @@ GeditWindow.background.csd GeditFileBrowserView.view {
|
||||
GeditWindow.background.csd GeditFileBrowserView.view.expander:hover {
|
||||
color: #5294E2; }
|
||||
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: rgba(65, 69, 79, 0.95);
|
||||
border-color: rgba(35, 37, 42, 0.95); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel {
|
||||
color: #A8ADB5; }
|
||||
GtkFileChooserDialog .action-bar.frame .button {
|
||||
border-color: transparent;
|
||||
GtkFileChooserDialog .action-bar.frame .button,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
color: #A8ADB5;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: rgba(168, 173, 181, 0.3);
|
||||
background-color: transparent;
|
||||
background-image: none; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked {
|
||||
border: 1px solid #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: #5c6069;
|
||||
border-color: rgba(168, 173, 181, 0.2);
|
||||
background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); }
|
||||
|
||||
/* GTK NAMED COLORS */
|
||||
@define-color theme_fg_color #D3DAE3;
|
||||
|
@ -3361,9 +3361,6 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: rgba(31, 34, 39, 0.97); }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
@ -3593,8 +3590,24 @@ NemoWindow .pane-separator,
|
||||
MarlinViewWindow .pane-separator {
|
||||
background-color: rgba(60, 64, 73, 0.95); }
|
||||
|
||||
GtkFileChooserDialog.background.csd {
|
||||
background-color: rgba(60, 64, 73, 0.95); }
|
||||
GtkFileChooserDialog .sidebar {
|
||||
background-color: transparent; }
|
||||
GtkFileChooserDialog GtkPaned > .vertical > .horizontal {
|
||||
background-color: #F5F6F7; }
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #F5F6F7; }
|
||||
GtkFileChooserDialog .dialog-vbox > .frame {
|
||||
color: #A8ADB5;
|
||||
border-color: transparent; }
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: transparent;
|
||||
border-color: rgba(44, 47, 53, 0.95); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkLabel,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
GeditWindow.background.csd {
|
||||
background-color: transparent; }
|
||||
@ -3666,21 +3679,6 @@ GeditWindow.background.csd GeditFileBrowserWidget {
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal {
|
||||
background-color: transparent;
|
||||
border-color: rgba(44, 47, 53, 0.95); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #A8ADB5;
|
||||
border: 1px solid transparent; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-color: #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
@ -3692,25 +3690,31 @@ GeditWindow.background.csd GeditFileBrowserView.view {
|
||||
GeditWindow.background.csd GeditFileBrowserView.view.expander:hover {
|
||||
color: #5294E2; }
|
||||
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: rgba(55, 59, 67, 0.95);
|
||||
border-color: rgba(44, 47, 53, 0.95); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel {
|
||||
color: #A8ADB5; }
|
||||
GtkFileChooserDialog .action-bar.frame .button {
|
||||
border-color: transparent;
|
||||
GtkFileChooserDialog .action-bar.frame .button,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
color: #A8ADB5;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: rgba(168, 173, 181, 0.3);
|
||||
background-color: transparent;
|
||||
background-image: none; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked {
|
||||
border: 1px solid #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: #5c6069;
|
||||
border-color: rgba(168, 173, 181, 0.2);
|
||||
background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); }
|
||||
|
||||
/* GTK NAMED COLORS */
|
||||
@define-color theme_fg_color #5c616c;
|
||||
|
@ -3360,9 +3360,6 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: #24272d; }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #444852; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
background-color: #444852; }
|
||||
|
||||
@ -3601,8 +3598,24 @@ NemoWindow .pane-separator,
|
||||
MarlinViewWindow .pane-separator {
|
||||
background-color: #2e3138; }
|
||||
|
||||
GtkFileChooserDialog.background.csd {
|
||||
background-color: #454a54; }
|
||||
GtkFileChooserDialog .sidebar {
|
||||
background-color: transparent; }
|
||||
GtkFileChooserDialog GtkPaned > .vertical > .horizontal {
|
||||
background-color: #444852; }
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #444852; }
|
||||
GtkFileChooserDialog .dialog-vbox > .frame {
|
||||
color: #A8ADB5;
|
||||
border-color: transparent; }
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: transparent;
|
||||
border-color: #23252a; }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkLabel,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
GeditWindow.background.csd {
|
||||
background-color: transparent; }
|
||||
@ -3674,21 +3687,6 @@ GeditWindow.background.csd GeditFileBrowserWidget {
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal {
|
||||
background-color: transparent;
|
||||
border-color: #353941; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #A8ADB5;
|
||||
border: 1px solid transparent; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-color: #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
@ -3700,25 +3698,31 @@ GeditWindow.background.csd GeditFileBrowserView.view {
|
||||
GeditWindow.background.csd GeditFileBrowserView.view.expander:hover {
|
||||
color: #5294E2; }
|
||||
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: #41454f;
|
||||
border-color: #23252a; }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel {
|
||||
color: #A8ADB5; }
|
||||
GtkFileChooserDialog .action-bar.frame .button {
|
||||
border-color: transparent;
|
||||
GtkFileChooserDialog .action-bar.frame .button,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
color: #A8ADB5;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: rgba(168, 173, 181, 0.3);
|
||||
background-color: transparent;
|
||||
background-image: none; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked {
|
||||
border: 1px solid #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: #5c6069;
|
||||
border-color: rgba(168, 173, 181, 0.2);
|
||||
background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); }
|
||||
|
||||
/* GTK NAMED COLORS */
|
||||
@define-color theme_fg_color #D3DAE3;
|
||||
|
@ -3361,9 +3361,6 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: #1f2227; }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
@ -3593,8 +3590,24 @@ NemoWindow .pane-separator,
|
||||
MarlinViewWindow .pane-separator {
|
||||
background-color: #3c4049; }
|
||||
|
||||
GtkFileChooserDialog.background.csd {
|
||||
background-color: #3c4049; }
|
||||
GtkFileChooserDialog .sidebar {
|
||||
background-color: transparent; }
|
||||
GtkFileChooserDialog GtkPaned > .vertical > .horizontal {
|
||||
background-color: #F5F6F7; }
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #F5F6F7; }
|
||||
GtkFileChooserDialog .dialog-vbox > .frame {
|
||||
color: #A8ADB5;
|
||||
border-color: transparent; }
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: transparent;
|
||||
border-color: #2c2f35; }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkLabel,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
GeditWindow.background.csd {
|
||||
background-color: transparent; }
|
||||
@ -3666,21 +3679,6 @@ GeditWindow.background.csd GeditFileBrowserWidget {
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal {
|
||||
background-color: transparent;
|
||||
border-color: #2c2f35; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #A8ADB5;
|
||||
border: 1px solid transparent; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-color: #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
@ -3692,25 +3690,31 @@ GeditWindow.background.csd GeditFileBrowserView.view {
|
||||
GeditWindow.background.csd GeditFileBrowserView.view.expander:hover {
|
||||
color: #5294E2; }
|
||||
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: #373b43;
|
||||
border-color: #2c2f35; }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel {
|
||||
color: #A8ADB5; }
|
||||
GtkFileChooserDialog .action-bar.frame .button {
|
||||
border-color: transparent;
|
||||
GtkFileChooserDialog .action-bar.frame .button,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
color: #A8ADB5;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: rgba(168, 173, 181, 0.3);
|
||||
background-color: transparent;
|
||||
background-image: none; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked {
|
||||
border: 1px solid #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: #5c6069;
|
||||
border-color: rgba(168, 173, 181, 0.2);
|
||||
background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); }
|
||||
|
||||
/* GTK NAMED COLORS */
|
||||
@define-color theme_fg_color #5c616c;
|
||||
|
@ -3360,9 +3360,6 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: #d4d5db; }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
@ -3592,8 +3589,24 @@ NemoWindow .pane-separator,
|
||||
MarlinViewWindow .pane-separator {
|
||||
background-color: #3c4049; }
|
||||
|
||||
GtkFileChooserDialog.background.csd {
|
||||
background-color: #3c4049; }
|
||||
GtkFileChooserDialog .sidebar {
|
||||
background-color: transparent; }
|
||||
GtkFileChooserDialog GtkPaned > .vertical > .horizontal {
|
||||
background-color: #F5F6F7; }
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #F5F6F7; }
|
||||
GtkFileChooserDialog .dialog-vbox > .frame {
|
||||
color: #A8ADB5;
|
||||
border-color: transparent; }
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: transparent;
|
||||
border-color: #2c2f35; }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkLabel,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
GeditWindow.background.csd {
|
||||
background-color: transparent; }
|
||||
@ -3665,21 +3678,6 @@ GeditWindow.background.csd GeditFileBrowserWidget {
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal {
|
||||
background-color: transparent;
|
||||
border-color: #2c2f35; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #A8ADB5;
|
||||
border: 1px solid transparent; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-color: #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
@ -3691,25 +3689,31 @@ GeditWindow.background.csd GeditFileBrowserView.view {
|
||||
GeditWindow.background.csd GeditFileBrowserView.view.expander:hover {
|
||||
color: #5294E2; }
|
||||
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: #373b43;
|
||||
border-color: #2c2f35; }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel {
|
||||
color: #A8ADB5; }
|
||||
GtkFileChooserDialog .action-bar.frame .button {
|
||||
border-color: transparent;
|
||||
GtkFileChooserDialog .action-bar.frame .button,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
color: #A8ADB5;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: rgba(168, 173, 181, 0.3);
|
||||
background-color: transparent;
|
||||
background-image: none; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked {
|
||||
border: 1px solid #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: #5c6069;
|
||||
border-color: rgba(168, 173, 181, 0.2);
|
||||
background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); }
|
||||
|
||||
/* GTK NAMED COLORS */
|
||||
@define-color theme_fg_color #5c616c;
|
||||
|
@ -3360,9 +3360,6 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: rgba(212, 213, 219, 0.95); }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
@ -3592,8 +3589,24 @@ NemoWindow .pane-separator,
|
||||
MarlinViewWindow .pane-separator {
|
||||
background-color: rgba(60, 64, 73, 0.95); }
|
||||
|
||||
GtkFileChooserDialog.background.csd {
|
||||
background-color: rgba(60, 64, 73, 0.95); }
|
||||
GtkFileChooserDialog .sidebar {
|
||||
background-color: transparent; }
|
||||
GtkFileChooserDialog GtkPaned > .vertical > .horizontal {
|
||||
background-color: #F5F6F7; }
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
background-color: #F5F6F7; }
|
||||
GtkFileChooserDialog .dialog-vbox > .frame {
|
||||
color: #A8ADB5;
|
||||
border-color: transparent; }
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: transparent;
|
||||
border-color: rgba(44, 47, 53, 0.95); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkLabel,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
GeditWindow.background.csd {
|
||||
background-color: transparent; }
|
||||
@ -3665,21 +3678,6 @@ GeditWindow.background.csd GeditFileBrowserWidget {
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal {
|
||||
background-color: transparent;
|
||||
border-color: rgba(44, 47, 53, 0.95); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #A8ADB5;
|
||||
border: 1px solid transparent; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-color: #5294E2; }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
|
||||
@ -3691,25 +3689,31 @@ GeditWindow.background.csd GeditFileBrowserView.view {
|
||||
GeditWindow.background.csd GeditFileBrowserView.view.expander:hover {
|
||||
color: #5294E2; }
|
||||
|
||||
GtkFileChooserDialog .action-bar.frame {
|
||||
background-color: rgba(55, 59, 67, 0.95);
|
||||
border-color: rgba(44, 47, 53, 0.95); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkLabel {
|
||||
color: #A8ADB5; }
|
||||
GtkFileChooserDialog .action-bar.frame .button {
|
||||
border-color: transparent;
|
||||
GtkFileChooserDialog .action-bar.frame .button,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button {
|
||||
color: #A8ADB5;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: rgba(168, 173, 181, 0.3);
|
||||
background-color: transparent;
|
||||
background-image: none; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover {
|
||||
border: 1px solid #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked {
|
||||
border: 1px solid #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:hover,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(168, 173, 181, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:active,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2; }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive {
|
||||
color: rgba(168, 173, 181, 0.4); }
|
||||
GtkFileChooserDialog .action-bar.frame GtkComboBox {
|
||||
color: #A8ADB5; }
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
GtkFileChooserDialog .action-bar.frame .button:insensitive,
|
||||
GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive {
|
||||
color: #5c6069;
|
||||
border-color: rgba(168, 173, 181, 0.2);
|
||||
background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); }
|
||||
|
||||
/* GTK NAMED COLORS */
|
||||
@define-color theme_fg_color #5c616c;
|
||||
|
Loading…
Reference in New Issue
Block a user