diff options
author | raveit65 <[email protected]> | 2015-05-06 11:59:32 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-05-06 12:01:03 +0200 |
commit | 4ec0073a5bbdd98de7869bc3fe22f5e98067180a (patch) | |
tree | 9bd7cd257426f0231ddf9dfe86f019e677389742 /desktop-themes/BlackMATE | |
parent | 324ca78dc899f1611e90f7537a975699f2248c50 (diff) | |
download | mate-themes-4ec0073a5bbdd98de7869bc3fe22f5e98067180a.tar.bz2 mate-themes-4ec0073a5bbdd98de7869bc3fe22f5e98067180a.tar.xz |
BlackMATE GTK3: add a css file for yumex-dnf
Diffstat (limited to 'desktop-themes/BlackMATE')
-rw-r--r-- | desktop-themes/BlackMATE/Makefile.am | 3 | ||||
-rw-r--r-- | desktop-themes/BlackMATE/apps/Makefile.am | 8 | ||||
-rw-r--r-- | desktop-themes/BlackMATE/apps/yumex.css | 57 |
3 files changed, 67 insertions, 1 deletions
diff --git a/desktop-themes/BlackMATE/Makefile.am b/desktop-themes/BlackMATE/Makefile.am index 8273b0e4..3f287260 100644 --- a/desktop-themes/BlackMATE/Makefile.am +++ b/desktop-themes/BlackMATE/Makefile.am @@ -12,7 +12,8 @@ SUBDIRS = \ gtk-3.0 \ metacity-1 \ cinnamon \ - unity + unity \ + apps CLEANFILES = index.theme diff --git a/desktop-themes/BlackMATE/apps/Makefile.am b/desktop-themes/BlackMATE/apps/Makefile.am new file mode 100644 index 00000000..df8c21f0 --- /dev/null +++ b/desktop-themes/BlackMATE/apps/Makefile.am @@ -0,0 +1,8 @@ +THEME_NAME=BlackMATE + +themedir = $(datadir)/themes/$(THEME_NAME)/apps + +theme_DATA = \ + yumex.css + +EXTRA_DIST = $(theme_DATA) diff --git a/desktop-themes/BlackMATE/apps/yumex.css b/desktop-themes/BlackMATE/apps/yumex.css new file mode 100644 index 00000000..b99108a7 --- /dev/null +++ b/desktop-themes/BlackMATE/apps/yumex.css @@ -0,0 +1,57 @@ +/*the order of the widgets is important! */ + +.button, +.menu-button { + padding: 6px; +} + +column-header { + padding: 1px 2px; +} + +column-header.button, +column-header .button { + border-image: none; + border-width: 0px 0px 1px 1px; + border-radius: 0; + border-style: solid; + border-color: @less_dark_color; + padding: 2px; +} + +.view { + background-color: shade(@less_dark_color, 2.4); + color: @theme_main_color; +} + +/* PackageView */ +GtkPaned.vertical GtkBox.horizontal .view { + background-color: shade(@less_dark_color, 2.8); +} + +GtkPaned.vertical GtkBox.vertical { + background-image: linear-gradient(to top, + @toolbar_gradient_base, + @bg_color); + border-radius: 5px 5px 0px 5px; +} + +/* group view */ +GtkPaned.horizontal .frame .view { + background-color: shade(@bg_color, 0.8); + color: @theme_fg_color; +} + +GtkPaned.vertical .frame .view { + background-color: shade(@less_dark_color, 2.4); +} + +/* infobar */ +GtkRevealer .frame { + background-color: shade(@less_dark_color, 0.4); +} + +GtkRevealer .frame .horizontal { + background-color: shade(@less_dark_color, 0.6); + border-radius: 4px; +} |