Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-theme.css
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2011-12-06 21:11:56 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2011-12-06 21:11:56 (GMT)
commit38bbcbfc41b4cad9d346bf2eef4bef033567b2ee (patch)
tree0084791179c0b02f8a2d3cf14424d27c57fa8111 /sugar-theme.css
parent35eceb936190b6c7ddf4055b909d4844be7bb2a1 (diff)
Radio buttons with css
Signed-off-by: Manuel Quiñones <manuq@laptop.org>
Diffstat (limited to 'sugar-theme.css')
-rw-r--r--sugar-theme.css26
1 files changed, 23 insertions, 3 deletions
diff --git a/sugar-theme.css b/sugar-theme.css
index d275a4c..6371e2a 100644
--- a/sugar-theme.css
+++ b/sugar-theme.css
@@ -41,13 +41,33 @@ GtkCheckButton:prelight {
background-color: @selection_grey;
}
-GtkRadioButton:active,
-GtkCheckButton:active {
+GtkRadioButton {
+ background-color: alpha(@white, 0.0);
+ color: @theme_base_color;
border-style: solid;
- border-color: @white;
+ border-color: #888;
border-width: 2;
}
+GtkCheckButton {
+ /* background-image: url(); */
+}
+
+GtkRadioButton GtkLabel {
+ color: @black;
+}
+
+GtkRadioButton:active {
+ color: @black;
+ border-style: solid;
+ border-color: @white;
+ border-width: 4;
+}
+
+GtkRadioButton:active:selected {
+ color: @selection_grey;
+}
+
GtkVSeparator, GtkHSeparator {
color: @button_grey;
}