diff options
author | raveit65 <[email protected]> | 2015-05-06 11:59:32 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-05-06 11:59:32 +0200 |
commit | 0dfacde82ae5631a0132466eb11d9619528b4838 (patch) | |
tree | 0f7cf2cee3ca76ad27dcc51abc0e608b4c19a19d /desktop-themes/BlackMATE | |
parent | 4c7fd8c212900830ce774681e4e9c6de6461bac2 (diff) | |
download | mate-themes-0dfacde82ae5631a0132466eb11d9619528b4838.tar.bz2 mate-themes-0dfacde82ae5631a0132466eb11d9619528b4838.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; +} |