diff options
author | Alexandru Pandelea <alexandru.pandelea@gmail.com> | 2016-02-27 06:01:55 +0200 |
---|---|---|
committer | Carlos Soriano <csoriano@gnome.org> | 2016-03-02 16:38:08 +0100 |
commit | 044c4ec9d6e8ebee2a7ee6246d43a54bf6d78218 (patch) | |
tree | b549a107d17a1ae03b693c572f5e01b6990d6c1d /src | |
parent | ec34284ed92ac5a7ea7ddf167e776d99078c5934 (diff) | |
download | nautilus-044c4ec9d6e8ebee2a7ee6246d43a54bf6d78218.tar.gz |
Adwaita.css: Fix dark theme background
The problem was that when the theme was switched from Adwaita light to Adwaita
dark, the background was kept on white.
The solution was to switch from the white background color, that was always
set for Adwaita to the corresponding theme_base_color of the theme.
https://bugzilla.gnome.org/show_bug.cgi?id=762228
Diffstat (limited to 'src')
-rw-r--r-- | src/resources/css/Adwaita.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/css/Adwaita.css b/src/resources/css/Adwaita.css index 87d950125..c2ba62d23 100644 --- a/src/resources/css/Adwaita.css +++ b/src/resources/css/Adwaita.css @@ -1,7 +1,7 @@ .nautilus-window, .nautilus-window notebook, .nautilus-window notebook > stack { - background: white; + background: @theme_base_color; } .nautilus-canvas-item { |