diff options
author | raveit65 <[email protected]> | 2016-07-02 17:55:59 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-07-02 17:56:50 +0200 |
commit | e7dfbcb2392985cb66927e38be6001adbfd5d35a (patch) | |
tree | d8dbc293f5664f24377122610afbc0a6fb6ebeea /desktop-themes/Blue-Submarine/gtk-3.0 | |
parent | cf4a45edcf759fd98501275dd322d2e51bb524f7 (diff) | |
download | mate-themes-e7dfbcb2392985cb66927e38be6001adbfd5d35a.tar.bz2 mate-themes-e7dfbcb2392985cb66927e38be6001adbfd5d35a.tar.xz |
GTK+-3.20 most themes: add support for OSD mediakeys windows
Diffstat (limited to 'desktop-themes/Blue-Submarine/gtk-3.0')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css b/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css index 825f5090..23268cb3 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css @@ -1029,3 +1029,38 @@ GvcMixerDialog notebook.frame box.vertical box.horizontal box.horizontal frame b background-color: shade (@theme_bg_color, 1.0); } +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 30px; + border-style: solid; + border-width: 1px; +} + +MsdOsdWindow.background.osd .trough { + background-color: @osd_trough_bg; + border-radius: 2px; +} + +MsdOsdWindow.background.osd .progressbar { + background-color: transparent; + border-radius: 2px; + border-color: transparent; + background-image: linear-gradient(to right, + alpha (#000, 0.00), + alpha (#000, 0.00) 48%, + alpha (#004, 0.12) 48%, + alpha (#004, 0.12) 50%, + alpha (#000, 0.00) 50%, + alpha (#000, 0.00) 98%, + alpha (#004, 0.12) 98%, + alpha (#004, 0.12)), + linear-gradient(to bottom, + alpha (#000, 0.20), + alpha (#000, 0.05) 50%, + alpha (#000, 0.00)), + linear-gradient(to right, + @progressbar_fill_a, + @progressbar_fill_b); + background-size: 40px auto, auto, auto; +} + |