diff options
author | Timm Bäder <mail@baedert.org> | 2016-10-03 09:31:44 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-10-16 18:17:21 +0200 |
commit | b9a304cf6f6995d6b8582c9381da1505ed5ff4f3 (patch) | |
tree | 53ef5bc6b180a919305ddc66f8fdca4d674e4a3b /tests/testgtk.css | |
parent | ac31a00dcf65acc24bca5d5f6abc070bacefbbfb (diff) | |
download | gtk+-b9a304cf6f6995d6b8582c9381da1505ed5ff4f3.tar.gz |
testgtk: fix css
Diffstat (limited to 'tests/testgtk.css')
-rw-r--r-- | tests/testgtk.css | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/tests/testgtk.css b/tests/testgtk.css index f5e8694f12..3c5002ff05 100644 --- a/tests/testgtk.css +++ b/tests/testgtk.css @@ -7,9 +7,6 @@ } * { - -GtkButton-child-displacement-x: 1; - -GtkButton-child-displacement-y: 1; - -GtkToolbar-space-size: 10; -GtkToolbar-space-style: line; -GtkToolbar-button-relief: none; @@ -18,25 +15,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; } |