After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 733486 - Add application-specific theme extensions
Add application-specific theme extensions
Status: RESOLVED FIXED
Product: gnome-documents
Classification: Core
Component: general
unspecified
Other All
: Normal normal
: ---
Assigned To: GNOME documents maintainer(s)
GNOME documents maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2014-07-21 09:26 UTC by Saurav Agarwalla
Modified: 2014-07-29 11:42 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Add application-specific theme extensions (24.84 KB, patch)
2014-07-24 05:39 UTC, Saurav Agarwalla
needs-work Details | Review
Add application-specific theme extensions (25.08 KB, patch)
2014-07-24 15:43 UTC, Saurav Agarwalla
needs-work Details | Review
Add application-specific theme extensions (25.26 KB, patch)
2014-07-29 10:23 UTC, Debarshi Ray
committed Details | Review

Description Saurav Agarwalla 2014-07-21 09:26:29 UTC
Based on Bug 733011
Comment 1 Saurav Agarwalla 2014-07-24 05:39:22 UTC
Created attachment 281547 [details] [review]
Add application-specific theme extensions

A very rough patch. I am yet to get the correct background. A review will be appreciated so that I know if I am working in the right direction.
Comment 2 Debarshi Ray 2014-07-24 08:08:37 UTC
Review of attachment 281547 [details] [review]:

Thanks for the patch, Saurav. I have not tried it out, but, yes, you are in the right direction.
Comment 3 Debarshi Ray 2014-07-24 11:56:27 UTC
Review of attachment 281547 [details] [review]:

::: src/resources/Adwaita.css
@@ +29,3 @@
+.documents-dropdown .view.radio:selected {
+    background-image: none;
+    background-color: alpha(@theme_base_color, 0.0);

Don't you have to define theme_base_color? I think this is why the selected dots are not showing up in the dropdown.

@@ +86,3 @@
+.documents-favorite.button:active,
+.documents-favorite.button:active:hover {
+    color: shade(@theme_selected_bg_color, 1.20);

Same for theme_selected_bg_color.

@@ +91,3 @@
+.documents-entry-tag {
+    background-color: @entry_tag_bg;
+    color: @entry_tag_fg;

Ditto for entry_tag_bg and entry_tag_fg. This could be why the tags are completely white / transparent.

@@ +123,3 @@
+    border-width: 3px 3px 6px 4px;
+    border-image: url("thumbnail-frame.png") 3 3 6 4;
+}

Interesting. We have something similar done in code (see src/documents.js). I wonder if that can be completely replaced by CSS.

@@ +132,3 @@
+    /* when there's no pixbuf yet */
+    background-color: @osd_bg;
+}

The 'osd' style class should be part of Adwaita core and in gtk+. Do we really need this?
Comment 4 Saurav Agarwalla 2014-07-24 15:42:50 UTC
(In reply to comment #3)

> @@ +123,3 @@
> +    border-width: 3px 3px 6px 4px;
> +    border-image: url("thumbnail-frame.png") 3 3 6 4;
> +}
> 
> Interesting. We have something similar done in code (see src/documents.js). I
> wonder if that can be completely replaced by CSS.

I am not clear on this. So, I am including this for now. 

> @@ +132,3 @@
> +    /* when there's no pixbuf yet */
> +    background-color: @osd_bg;
> +}
> 
> The 'osd' style class should be part of Adwaita core and in gtk+. Do we really
> need this?

I saw that it has been included in gtk+ but ".osd .page-thumbnail" was mentioned as being used by Documents in gtk-widgets.css in gnome-themes-standard. I couldn't find ".osd .page-thumbnail" in gtk+ so thought of including it.
Comment 5 Saurav Agarwalla 2014-07-24 15:43:25 UTC
Created attachment 281611 [details] [review]
Add application-specific theme extensions
Comment 6 Saurav Agarwalla 2014-07-24 15:47:12 UTC
Defined the required colors. The patch might need more work since I am unable to get the required background color instead of white.
Comment 7 Debarshi Ray 2014-07-29 10:00:23 UTC
Review of attachment 281611 [details] [review]:

Thanks for the patch, Saurav. The CSS looks fine now.

::: src/application.js
@@ +407,3 @@
         settings = new Gio.Settings({ schema: 'org.gnome.documents' });
 
+        let defaultSettings = Gtk.Settings.get_default();

What about calling it 'gtkSettings'? We already have a 'settings', so it would make it clear what we are talking about here.

@@ +408,3 @@
 
+        let defaultSettings = Gtk.Settings.get_default();
+        this._themeChanged.provider = null;

I think the idiomatic way to do this in JavaScript is to define a global called cssProvider at the top of the file. Just like sourceManager or changeMonitor.

@@ +411,3 @@
+        defaultSettings.connect('notify::gtk-theme-name', Lang.bind(this, function() {
+            this._themeChanged(defaultSettings);
+        }));

What about simplifying this to:
gtkSettings.connect('notify::gtk-theme-name', Lang.bind(this, this._themeChanged));
Comment 8 Debarshi Ray 2014-07-29 10:07:38 UTC
Review of attachment 281611 [details] [review]:

::: src/application.js
@@ +392,3 @@
+        }
+        else if (this._themeChanged.provider != null)
+            Gtk.StyleContext.remove_provider_for_screen(screen, this._themeChanged.provider);

We also need to set cssProvider to null
Comment 9 Debarshi Ray 2014-07-29 10:23:17 UTC
(In reply to comment #8)
> Review of attachment 281611 [details] [review]:
> 
> ::: src/application.js
> @@ +392,3 @@
> +        }
> +        else if (this._themeChanged.provider != null)
> +            Gtk.StyleContext.remove_provider_for_screen(screen,
> this._themeChanged.provider);
> 
> We also need to set cssProvider to null

Or, maybe, not. Sorry about that.
Comment 10 Debarshi Ray 2014-07-29 10:23:57 UTC
Created attachment 281933 [details] [review]
Add application-specific theme extensions
Comment 11 Saurav Agarwalla 2014-07-29 11:42:12 UTC
Thanks for helping me out, Debarshi.