[geany/geany] c4f56b: Fix some custom CSS selectors to work on GTK 3.20
Colomban Wendling
git-noreply at xxxxx
Mon May 2 13:26:29 UTC 2016
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Mon, 02 May 2016 13:26:29 UTC
Commit: c4f56bfcd6a16d8c04ad86fb50ed9f77107cb550
https://github.com/geany/geany/commit/c4f56bfcd6a16d8c04ad86fb50ed9f77107cb550
Log Message:
-----------
Fix some custom CSS selectors to work on GTK 3.20
Modified Paths:
--------------
data/geany.css
Modified: data/geany.css
6 lines changed, 4 insertions(+), 2 deletions(-)
===================================================================
@@ -4,12 +4,14 @@
#geany-close-tab-button {
padding: 0;
}
-#geany-close-tab-button GtkImage {
+#geany-close-tab-button GtkImage /* GTK < 3.20 */,
+#geany-close-tab-button image /* GTK >= 3.20 */ {
padding: 0;
}
/* use monospaced font in search entries for easier reading of regexp (#1907117) */
-#GeanyDialogSearch GtkEntry {
+#GeanyDialogSearch GtkEntry /* GTK < 3.20 */,
+#GeanyDialogSearch entry /* GTK >= 3.20 */ {
font-family: monospace;
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list