[gtk+/gtk-3-22] testgtk: fix css
- From: Daniel Boles <dboles src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-3-22] testgtk: fix css
- Date: Sun, 3 Sep 2017 11:26:49 +0000 (UTC)
commit 87e76c12a90307978559e67c7318488be30db028
Author: Timm Bäder <mail baedert org>
Date: Mon Oct 3 09:31:44 2016 +0200
testgtk: fix css
tests/testgtk.c | 3 ++-
tests/testgtk.css | 13 +++++++------
tests/testgtk2.css | 7 ++++---
3 files changed, 13 insertions(+), 10 deletions(-)
---
diff --git a/tests/testgtk.c b/tests/testgtk.c
index 093ce7e..c140400 100644
--- a/tests/testgtk.c
+++ b/tests/testgtk.c
@@ -10074,7 +10074,8 @@ main (int argc, char *argv[])
gtk_css_provider_load_from_data (memory_provider,
"#testgtk-version-label {\n"
" color: #f00;\n"
- " font: Sans 18;\n"
+ " font-family: Sans;\n"
+ " font-size: 18px;\n"
"}",
-1, NULL);
gtk_style_context_add_provider_for_screen (screen, GTK_STYLE_PROVIDER (memory_provider),
diff --git a/tests/testgtk.css b/tests/testgtk.css
index f5e8694..e05f830 100644
--- a/tests/testgtk.css
+++ b/tests/testgtk.css
@@ -18,25 +18,26 @@
-GtkArrow-arrow-scaling: 1.0;
-GtkEntry-invisible-char: 10046;
- font: Sans 12;
+ font-family: Sans;
+ font-size: 12px;
-Gtest-foo: 47;
-Gtest-bar: 47;
}
-GtkLabel:selected {
+label:selected {
background-color: gray;
}
-GtkLabel:prelight {
+label:hover {
background-color: mix (#a0a0a0, rgb (75%, 200, 0%), 0.9);
}
/* override testgtk2, introduce the green color in the button list */
-#main_window GtkScrolledWindow GtkButton:prelight {
+#main_window scrolledwindow button:hover {
background-color: rgb (0%, 75%, 0);
}
-GtkEntry {
- gtk-key-bindings: entry-bindings;
+entry {
+ -gtk-key-bindings: entry-bindings;
}
diff --git a/tests/testgtk2.css b/tests/testgtk2.css
index a51ec2a..49e6c09 100644
--- a/tests/testgtk2.css
+++ b/tests/testgtk2.css
@@ -1,9 +1,10 @@
/* this file gets included from testgtk.css */
-#main_window GtkButton {
- font: Monospace 10;
+#main_window button {
+ font-family: Monospace;
+ font-size: 10px;
}
-#main_window GtkButton:hover {
+#main_window button:hover {
background-color: rgba(0%, 0%, 75%, 0.1);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]