Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/stylesheet.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/graphics/stylesheet.py')
-rw-r--r--sugar/graphics/stylesheet.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/sugar/graphics/stylesheet.py b/sugar/graphics/stylesheet.py
deleted file mode 100644
index af32a7d..0000000
--- a/sugar/graphics/stylesheet.py
+++ /dev/null
@@ -1,31 +0,0 @@
-from sugar.graphics import style
-
-menu = {
- 'background_color' : 0x000000FF,
- 'spacing' : style.space_unit,
- 'padding' : style.space_unit
-}
-
-menu_Title = {
- 'color' : 0xFFFFFFFF,
- 'font' : style.get_font_description('Bold', 1.2)
-}
-
-menu_Separator = {
- 'background_color' : 0xFFFFFFFF,
- 'box_height' : style.separator_thickness
-}
-
-menu_ActionIcon = {
- 'scale' : style.standard_icon_scale
-}
-
-menu_Item = {
- 'color' : 0xFFFFFFFF,
- 'font' : style.get_font_description('Plain', 1.1)
-}
-
-menu_Text = {
- 'color' : 0xFFFFFFFF,
- 'font' : style.get_font_description('Plain', 1.2)
-}