[nautilus/3.30.1.1fixes] Revert "toolbar: Use GTK_STYLE_CLASS'es on the pathbar container box"
- From: Carlos Soriano <csoriano src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/3.30.1.1fixes] Revert "toolbar: Use GTK_STYLE_CLASS'es on the pathbar container box"
- Date: Fri, 12 Oct 2018 10:34:12 +0000 (UTC)
commit 44147d35ba0c303ce964a69ee36ce3bcf1d4a80e
Author: Carlos Soriano <csoriano redhat com>
Date: Fri Oct 12 12:31:15 2018 +0200
Revert "toolbar: Use GTK_STYLE_CLASS'es on the pathbar container box"
This reverts commit e35d708eddb4dd67f53ec6fd83b9de3286564b6a.
src/nautilus-toolbar.c | 8 +++-----
src/resources/css/Adwaita.css | 6 ++++++
2 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/src/nautilus-toolbar.c b/src/nautilus-toolbar.c
index 12fc27a59..fb0d2d4c0 100644
--- a/src/nautilus-toolbar.c
+++ b/src/nautilus-toolbar.c
@@ -858,17 +858,15 @@ on_notify_width_maximized (NautilusContainerMaxWidth *container,
context = gtk_widget_get_style_context (self->path_bar_container);
width_maximized = nautilus_container_max_width_get_width_maximized (container);
- g_return_if_fail (gtk_style_context_has_class (context, GTK_STYLE_CLASS_FRAME) != width_maximized);
+ g_return_if_fail (gtk_style_context_has_class (context, "width-maximized") != width_maximized);
if (width_maximized)
{
- gtk_style_context_add_class (context, GTK_STYLE_CLASS_FRAME);
- gtk_style_context_add_class (context, GTK_STYLE_CLASS_BACKGROUND);
+ gtk_style_context_add_class (context, "width-maximized");
}
else
{
- gtk_style_context_remove_class (context, GTK_STYLE_CLASS_FRAME);
- gtk_style_context_remove_class (context, GTK_STYLE_CLASS_BACKGROUND);
+ gtk_style_context_remove_class (context, "width-maximized");
}
}
diff --git a/src/resources/css/Adwaita.css b/src/resources/css/Adwaita.css
index ca7a3a9d4..b1e510903 100644
--- a/src/resources/css/Adwaita.css
+++ b/src/resources/css/Adwaita.css
@@ -65,8 +65,14 @@
.path-bar-box {
transition: border 200ms;
transition: background-color 200ms;
+}
+.path-bar-box.width-maximized {
+ border: 1px @borders solid;
border-radius: 3px;
}
+.path-bar-box.width-maximized:not(:backdrop) {
+ background-color: @theme_bg_color;
+}
/* Make the tags fit into the box */
entry.search > * {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]