diff options
author | raveit65 <[email protected]> | 2018-02-23 14:43:45 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-02-23 14:43:45 +0100 |
commit | dbcc7bf25981e6422abcfa3daa0479c0211d408b (patch) | |
tree | 858a56425e5dff56bdb3ffae9ffb7c5ca6d9a192 | |
parent | 5fda40fe7039869533042a0097ec8c5a67a4f59a (diff) | |
download | mate-themes-dbcc7bf25981e6422abcfa3daa0479c0211d408b.tar.bz2 mate-themes-dbcc7bf25981e6422abcfa3daa0479c0211d408b.tar.xz |
HCI: add missing settings for multimedia OSD
-rw-r--r-- | desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css b/desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css index ea606086..08ccaae0 100644 --- a/desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css +++ b/desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css @@ -325,3 +325,43 @@ window.background.maximized.caja-navigation-window notebook.caja-notebook scroll border-right-width: 0px; } +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 20px; + border-style: solid; + border-width: 3px; + outline-color: rgba(255, 255, 255, 0.3); +} + +MsdOsdWindow.background.osd .trough { + background-color: transparent; + min-height: 2px; + border-radius: 3px; + border-width: 1px; + border-color: rgba(0,0,0,0.4); +} + +MsdOsdWindow.background.osd .progressbar { + border-width: 1px; + border-radius: 3px; + border-color: rgba(0,0,0,0.4); + background-color: alpha(shade(@theme_selected_bg_color, 1.0), 0.6); +} + +/*For mate-settings-daemon noncomposited osd windows*/ +MsdOsdWindow.background.osd.msd-osd-window-solid { + border-radius: 0px; + border-width: 2px; + border-style:solid; + border-color: rgb(64, 64, 67); +} + +MsdOsdWindow.background.osd.msd-osd-window-solid progressbar, +MsdOsdWindow.background.osd.msd-osd-window-solid progressbar trough { + border-radius: 10px; +} + +MsdOsdWindow.background.osd.msd-osd-window-solid progressbar trough { + border: 1px solid rgb(102, 153, 204); +} + |