diff options
author | raveit65 <[email protected]> | 2018-02-23 14:43:45 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-02-23 14:45:12 +0100 |
commit | d7bd6bb001fed81dee802e829e92a6902fd723ae (patch) | |
tree | 7f56a9ca7ee71bc479e3ae29905f991984b9be15 | |
parent | d572df1d4cc68e3ec757afa02c50301c6e392255 (diff) | |
download | mate-themes-d7bd6bb001fed81dee802e829e92a6902fd723ae.tar.bz2 mate-themes-d7bd6bb001fed81dee802e829e92a6902fd723ae.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); +} + |