diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-01-23 20:16:14 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-01-23 20:16:14 (GMT) |
commit | d0a287a4e57b299cec22c94b028e3553d5b36fcd (patch) | |
tree | 86a274d6c894ec6506f0b5d55436d958a556f9fc /themes/Adwaita | |
parent | f251814cf0fd10a767972530c119f8f109613c48 (diff) |
Prepared a toolbar for actions on basic blocks.
Diffstat (limited to 'themes/Adwaita')
-rw-r--r-- | themes/Adwaita/Makefile.am | 3 | ||||
-rw-r--r-- | themes/Adwaita/core.css | 16 | ||||
-rw-r--r-- | themes/Adwaita/widgets-dark.css | 18 | ||||
-rw-r--r-- | themes/Adwaita/widgets.css | 18 |
4 files changed, 55 insertions, 0 deletions
diff --git a/themes/Adwaita/Makefile.am b/themes/Adwaita/Makefile.am index 4712702..cf4d6a3 100644 --- a/themes/Adwaita/Makefile.am +++ b/themes/Adwaita/Makefile.am @@ -1,8 +1,11 @@ GTK3_CSS = \ + core.css \ display.css \ icons.css \ portions.css \ + widgets.css \ + widgets-dark.css \ clean.png \ redo.png \ undo.png diff --git a/themes/Adwaita/core.css b/themes/Adwaita/core.css new file mode 100644 index 0000000..a7760a1 --- /dev/null +++ b/themes/Adwaita/core.css @@ -0,0 +1,16 @@ + +.tinybutton { + + min-width: 12px; + min-height: 12px; + + padding: 2px; + +} + +.tinybutton > image { + + background-position: center center; + background-repeat: no-repeat; + +} diff --git a/themes/Adwaita/widgets-dark.css b/themes/Adwaita/widgets-dark.css new file mode 100644 index 0000000..37d856f --- /dev/null +++ b/themes/Adwaita/widgets-dark.css @@ -0,0 +1,18 @@ + +.block-palette > image { + + background-image: url('resource:///org/chrysalide/gui/core/images/palette.png'); + +} + +.block-collapse > image { + + background-image: url('resource:///org/chrysalide/gui/core/images/collapse_dark.png'); + +} + +.block-expand > image { + + background-image: url('resource:///org/chrysalide/gui/core/images/expand_dark.png'); + +} diff --git a/themes/Adwaita/widgets.css b/themes/Adwaita/widgets.css new file mode 100644 index 0000000..de84f34 --- /dev/null +++ b/themes/Adwaita/widgets.css @@ -0,0 +1,18 @@ + +.block-palette > image { + + background-image: url('resource:///org/chrysalide/gui/core/images/palette.png'); + +} + +.block-collapse > image { + + background-image: url('resource:///org/chrysalide/gui/core/images/collapse.png'); + +} + +.block-expand > image { + + background-image: url('resource:///org/chrysalide/gui/core/images/expand.png'); + +} |