diff options
Diffstat (limited to 'src/gui/style.css')
-rw-r--r-- | src/gui/style.css | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/gui/style.css b/src/gui/style.css new file mode 100644 index 0000000..dce41fa --- /dev/null +++ b/src/gui/style.css @@ -0,0 +1,71 @@ + +/* Extension de style */ + +.dim-label { + + margin-bottom: 4px; + +} + + +.boxed-widget { + + border-top-left-radius: 12px; + border-top-right-radius: 12px; + + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; + +} + + +list.boxed-list, list.boxed-list > row:first-child { + + border-top-left-radius: 12px; + border-top-right-radius: 12px; + +} + +list.boxed-list, list.boxed-list > row:last-child { + + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; + +} + + +/* about.css */ + +@import url('resource:///re/chrysalide/framework/gui/dialogs/about.css'); + + +/* welcome.css */ + +grid.hints { + + background-image: -gtk-icontheme('tipoftheday-symbolic'); + background-position: right top; + background-size: 200px auto; + background-repeat: no-repeat; + + min-height: 250px; + +} + +grid.hints > box { + + min-width: 130px; + +} + + +/* dockstation.css */ + +.control-button { + + min-height: 0; + min-width: 0; + + padding: 6px; + +} |