Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/stylesheet.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/stylesheet.py')
-rw-r--r--shell/view/stylesheet.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/shell/view/stylesheet.py b/shell/view/stylesheet.py
new file mode 100644
index 0000000..02f19f3
--- /dev/null
+++ b/shell/view/stylesheet.py
@@ -0,0 +1,21 @@
+import gtk
+
+from sugar.graphics.iconcolor import IconColor
+
+if gtk.gdk.screen_width() == 1200:
+ _medium_icon_size = 75
+else:
+ _medium_icon_size = 50
+
+frame_ActivityIcon = {
+ 'color' : IconColor('white'),
+ 'size' : _medium_icon_size
+}
+
+frame_ZoomIcon = {
+ 'size' : _medium_icon_size
+}
+
+menu_ActionIcon = {
+ 'size' : _medium_icon_size
+}