diff --git a/1-change-color.sh b/1-change-color.sh index 79c279e..16da858 100755 --- a/1-change-color.sh +++ b/1-change-color.sh @@ -29,10 +29,14 @@ # THESE CODES MUST BE CHANGED # THESE CODES MUST BE CHANGED # THESE CODES MUST BE CHANGED -# This is crimson red. +# This is crimson red. #fd424d + +#original light version is #9ab87c +personallightcolour=fd424d + +#original dark version is #8fa876 +personaldarkcolour=fd424d -personaldarkcolour=FD424D -personallightcolour=FD424D # THESE CODES MUST BE CHANGED # THESE CODES MUST BE CHANGED @@ -56,9 +60,11 @@ echo "Wait for it ...." ## DO NOT CHANGE THESE LINES - +#original light version is #9ab87c oldcolour1=9ab87c +#original dark version is #8fa876 oldcolour2=8fa876 +#other colour variations in svg oldcolour3=779559 oldcolour4=9abe76 oldcolour5=9ab87d @@ -68,6 +74,7 @@ oldcolour7=81a65b newcolour1=$personallightcolour newcolour2=$personaldarkcolour + newcolour3=$personaldarkcolour newcolour4=$personallightcolour newcolour5=$personallightcolour @@ -83,6 +90,37 @@ find src -name "*.*" -type f -exec sed -i 's/'$oldcolour5'/'$newcolour5'/g' {} find src -name "*.*" -type f -exec sed -i 's/'$oldcolour6'/'$newcolour6'/g' {} \; find src -name "*.*" -type f -exec sed -i 's/'$oldcolour7'/'$newcolour7'/g' {} \; + +#Rubberband Solution for now + +#border +oldcolour1=76905b +find src -type f -exec sed -i 's/'$oldcolour1'/'$newcolour1'/g' {} \; + +#background of rubberband is in rgba +#from hex to decimal +redhex=${newcolour1:0:2} +greenhex=${newcolour1:2:2} +bluehex=${newcolour1:4:2} + +reddec=$((16#$redhex)) +greendec=$((16#$greenhex)) +bluedec=$((16#$bluehex)) + +rgbacolour="$reddec, $greendec, $bluedec" + +#old rgba colour of background rubberband +oldcolour1="118, 144, 91" +newcolour1=$rgbacolour + +#gtk-dark rubberband +find src -type f -exec sed -i "s/$oldcolour1/$newcolour1/g" {} \; + +#gtk + gtk-darker rubberband +oldcolour1="129, 166, 91" +find src -type f -exec sed -i "s/$oldcolour1/$newcolour1/g" {} \; + + echo "All css files but also svg files will be affected" echo "PNG'S will not be altered with this script" echo diff --git a/4-moving-the-themes.sh b/4-moving-the-themes.sh index a2edc68..0e7e282 100755 --- a/4-moving-the-themes.sh +++ b/4-moving-the-themes.sh @@ -20,7 +20,7 @@ echo "Your name will be added after 'Mint-Y', 'Mint-Y-Dark' or 'Mint-Y-Darker'." echo "For example if you type Sun you will get" echo "E.g. Mint-Y-Sun, Mint-Y-Darker-Sun, Mint-Y-Dark-Sun" -read -p "How should we name this new theme? First letter is a capital letter : " choice +read -p "How should we name this new theme? First letter is a capital letter (no space but '-') : " choice echo "Renaming the folders" diff --git a/README.md b/README.md index e464563..32c9f8c 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,22 @@ All themes are sorted alphabetically. +# This is the Mint-Y-Havelock theme. + +## Mint-Y-Dark-Havelock + +![Screenshots](http://i.imgur.com/TOYWMRB.jpg) + + + +# This is the Mint-Y-Hibiscus theme. + +## Mint-Y-Dark-Hibiscus + +![Screenshots](http://i.imgur.com/31PANoq.jpg) + + + # This is the Mint-Y-Lightning theme. @@ -179,6 +195,14 @@ All themes are sorted alphabetically. +# This is the Mint-Y-Moka theme. + +## Mint-Y-Dark-MOka + +![Screenshots](http://i.imgur.com/UgRHgxo.jpg) + + + # This is the Mint-Y-Matrix theme. @@ -243,6 +267,13 @@ Started with Sardi Ghost Flexible script to change the colour, then conky aureol +# This is the Mint-Y-Watusi theme. + +## Mint-Y-Dark-Watusi + +![Screenshots](http://i.imgur.com/nZsWOAQ.jpg) + + # Installation ##0. Get the source diff --git a/themes/Mint-Y-Arch/gtk-3.0/gtk.css b/themes/Mint-Y-Arch/gtk-3.0/gtk.css index 8af05c1..8ec79cb 100644 --- a/themes/Mint-Y-Arch/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Arch/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #2790c5; - background-color: rgba(39, 144, 197, 0.2); } + border: 1px solid #1793D1; + background-color: rgba(23, 147, 209, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Dark-Arch/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Arch/gtk-3.0/gtk.css index 720d0d3..3012394 100644 --- a/themes/Mint-Y-Dark-Arch/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Dark-Arch/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid #1793D1; + background-color: rgba(23, 147, 209, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } diff --git a/themes/Mint-Y-Dark-Fire/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Fire/gtk-3.0/gtk.css index 42e7c7f..0904350 100644 --- a/themes/Mint-Y-Dark-Fire/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Dark-Fire/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid #B41919; + background-color: rgba(180, 25, 25, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/cinnamon.css b/themes/Mint-Y-Dark-Havelock/cinnamon/cinnamon.css new file mode 100644 index 0000000..6daa3fc --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #D3D3D3; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(82, 82, 82, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #5491d6; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px #5491d6; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: rgba(211, 211, 211, 0.45); + border: 1px solid rgba(32, 32, 32, 0.55); + background-color: rgba(69, 69, 69, 0.55); + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #5491d6; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #D3D3D3; + background-color: #404040; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(211, 211, 211, 0.45); + background-color: #383838; + border-color: 1px solid #272727; + box-shadow: inset 0 2px 4px rgba(56, 56, 56, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #5491d6; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #5491d6; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(64, 64, 64, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #717171; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #606060; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #5491d6; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #202020; + -slider-border-color: transparent; + -slider-active-background-color: #5491d6; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("dark-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("dark-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #a6c6ea; + text-decoration: underline; } + .cinnamon-link:hover { + color: #cfe0f4; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #D3D3D3; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #404040; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #D3D3D3; + border-color: rgba(211, 211, 211, 0.11); + background-color: rgba(211, 211, 211, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(211, 211, 211, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #D3D3D3; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(211, 211, 211, 0.45); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #2f2f2f; + -arrow-border-width: 1px; + -arrow-border-color: #202020; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #5491d6; + color: #ffffff; + border: 1px solid #5491d6; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #5491d6; + background-color: #5491d6; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #5491d6; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #5491d6; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #202020; + border-radius: 2px; + background-color: #404040; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #D3D3D3; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #D3D3D3; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(211, 211, 211, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(211, 211, 211, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #D3D3D3; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #5491d6; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(211, 211, 211, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(211, 211, 211, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #D3D3D3; } + .popup-menu #notification { + color: #D3D3D3; + border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #D3D3D3; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #D3D3D3; + border: 1px solid #202020; + background-color: #2f2f2f; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #5491d6; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #5491d6; + border: 0px solid #5491d6; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #D3D3D3; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #2f2f2f; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #D3D3D3; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #5491d6; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid #202020; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + border: 1px solid #5491d6; + background-color: #5491d6; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #404040; + border: 1px solid #202020; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(211, 211, 211, 0.45); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #D3D3D3; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #D3D3D3; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #D3D3D3; + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #D3D3D3; + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #5491d6; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #5491d6; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px #5491d6; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #222222; + -slider-border-color: transparent; + -slider-active-background-color: #5491d6; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #5491d6; } + .workspace-button:hover { + color: rgba(84, 145, 214, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #5491d6; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #5491d6; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #5491d6; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #D3D3D3; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #D3D3D3; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #202020; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #2f2f2f; + color: #D3D3D3; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #202020; + border-radius: 5px 5px 0 0; + background-color: #272727; + color: #D3D3D3; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #5491d6; + background-color: rgba(84, 145, 214, 0.3); } + +.photoframe-box { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(84, 145, 214, 0.3); + border: 1px solid #5491d6; } + .tile-preview.snap { + background-color: rgba(84, 145, 214, 0.6); } + +.tile-hud { + background-color: rgba(84, 145, 214, 0.3); + border: 1px solid #5491d6; } + .tile-hud.snap { + background-color: rgba(84, 145, 214, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..c840b85 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..a8c7bbc --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..fdf9cf7 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..afa9dea --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..f812cbb --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..5424d6e --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..15ef3ea --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..e6e2ef6 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..fb0d550 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..f99c5d6 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/menu-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/menu-hover.svg new file mode 100644 index 0000000..a023a8e --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/menu.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/menu.svg new file mode 100644 index 0000000..44e295d --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/submenu.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/submenu.svg new file mode 100644 index 0000000..9369544 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/button-box.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/button-box.svg new file mode 100644 index 0000000..0342698 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/button-box.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/message.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/message.svg new file mode 100644 index 0000000..83e554a --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/modal.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/modal.svg new file mode 100644 index 0000000..ec0b945 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/switch/switch-off.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/switch/switch-off.svg new file mode 100644 index 0000000..5d6df1f --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/switch/switch-on.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/switch/switch-on.svg new file mode 100644 index 0000000..013cae4 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/dark-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/menu/menu-separator.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace-active.svg new file mode 100644 index 0000000..4a54d61 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/add-workspace.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/bg.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..fb957eb --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..f2c44a4 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close-active.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close-hover.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/corner-ripple-ltr.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/corner-ripple-ltr.svg new file mode 100644 index 0000000..ec3d261 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/corner-ripple-ltr.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/corner-ripple-rtl.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/corner-ripple-rtl.svg new file mode 100644 index 0000000..ec95067 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/corner-ripple-rtl.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/desklet-header.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/desklet.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/osd.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/overview-hover.png b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/overview.png b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/misc/trash-icon.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/panel/activities-active.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/panel/activities.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/panel/panel-top.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..b69b955 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/window-list-active-top.svg new file mode 100644 index 0000000..d2b8f15 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/cinnamon/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Havelock/cinnamon/thumbnail.png b/themes/Mint-Y-Dark-Havelock/cinnamon/thumbnail.png new file mode 100644 index 0000000..b892c37 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/apps.rc b/themes/Mint-Y-Dark-Havelock/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..dcba37c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..51ef506 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..1dbda3d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..9de0a08 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..d2f06c4 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..16604bd Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..d7641b4 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..26595ef Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..44920ba Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..9cf5f55 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..2386190 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..9f13d52 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..a2c2fb3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..29ad98b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..b73866a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..f5431a6 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..7ab983b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..ef08872 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..a7d3dcd Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..ee98f4f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button.png new file mode 100644 index 0000000..2d6977f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..2336ecc Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..0faab7d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..86acdca Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..e9f7c0f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..33d8376 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..3e70a72 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..8b67e5e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..f471363 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..177130d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..a20b08a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..355ec96 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..0c431cf Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..4504cbb Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..2c9dc59 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..dfe70c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..e67ae2a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..0aad6dd Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..a78f484 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..a21fd44 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..b63573c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..3724d98 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..4e6d895 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..f3be72c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..8e06e28 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..cafcd34 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..7c8222c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..5958214 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..57a951b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..d03c69e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..4d95f7f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7e67d72 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..a19f255 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..7918ae9 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..3375bd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..9b01f9e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..fcd4fcc Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..9b1daaf Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..e85003b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..38fb46d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..3b25519 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..44c0eb8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..743d7e6 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..73ac4f7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..33676fb Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..a22bcfe Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..63b4fcb Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..b10371f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..1e9beed Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..ebb9ef7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/minus.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..6fef440 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..1400864 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..b303b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..9a2c88b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..26200a9 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..837e8cf Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/null.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/plus.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..cc63a1e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..81c4531 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..69827c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..73047a3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..ff21b4d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..cce4d70 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..ed22c29 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..610f7e4 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..c690bde Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..bddb0ac Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..3d1d371 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..342978c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..349a102 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..b8ab25b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..369c51c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..cef90d5 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..77a157e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..d307bd3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..88f8bf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..3ca1f86 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..a6a2a9e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..4f0f390 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..ac7c888 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..abec1f2 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..1038c5a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..065417b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..681e68f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..b3168b5 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..f3efa12 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..2c98cf7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..efae909 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..259aab7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..1d8ea2c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..486ce5b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..249dbbd Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..f9d3258 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..358ecc8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..1c8a10a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..9f75516 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/gtkrc b/themes/Mint-Y-Dark-Havelock/gtk-2.0/gtkrc new file mode 100644 index 0000000..442a545 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#404040\nfg_color:#DADADA\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#8fa876\nselected_fg_color:#FFFFFF\ntext_color:#D3D3D3\nbg_color:#383838\ninsensitive_bg_color:#3e3e3e\ninsensitive_fg_color:#7f7f7f\nnotebook_bg:#404040\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#383838" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/main.rc b/themes/Mint-Y-Dark-Havelock/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-2.0/panel.rc b/themes/Mint-Y-Dark-Havelock/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..d476c05 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..8db05ee Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..6331172 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..809aad7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..3e13fb7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..c2ede5a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..757c9fe Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..219811b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..e651610 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..049a649 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..a41daa3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..8d11e2e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..4fdd643 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..eb4a126 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..1d63761 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..c9f7d3b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..c54fc4c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..561baa8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..2a226be Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..76a155a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..61cabc1 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..d1b81c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..8a93396 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..838575d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..090d27b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..343322f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..c24c50a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..d0fd54a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..64a4d32 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..0ff0347 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..4618820 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..9a17855 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..974733c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..10c0b89 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..a13ac6e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..71bb349 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..bfb3602 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..56f523e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..ae0c98a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..c3f1e44 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..12471d6 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..b5d2d25 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..61ff6ec Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..1e71eeb Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..ac4fa9e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..773441b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..cf76b7d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..769ecd3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..f1f9082 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..4197edc Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..1aabde5 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..4998013 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..f0dcc61 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..ead32a2 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..39901e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..d9d3024 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..66fb833 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..05e0b08 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..00a1334 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..6d972c4 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..a329998 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..972d432 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..4e3d914 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..1f846dc Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..45e67cd Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..79d10e5 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..4e3d914 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..1f846dc Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..5541b8a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..9e5346f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..66fb833 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..05e0b08 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..4e929fb Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..6eeca8e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..68b4ff0 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..28682cf Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..68b4ff0 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..28682cf Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Havelock/gtk-3.0/gtk.css new file mode 100644 index 0000000..5a316a3 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/gtk-3.0/gtk.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5491d6; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #5491d6; + background-color: rgba(84, 145, 214, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5491d6; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #5491d6, inset -1px 0 #5491d6, inset 0 1px #5491d6, inset 0 -1px #5491d6; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5491d6; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5491d6; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #5491d6); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5491d6), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5491d6), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #5491d6; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5491d6), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #5491d6; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5491d6; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #5491d6; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #5491d6; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #5491d6; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #5491d6; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #5491d6; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5491d6; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #5491d6); } + GtkTreeView.view.progressbar:selected { + color: #5491d6; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #5491d6; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5491d6; + box-shadow: inset 1px 1px 0 1px #5491d6, inset -1px 0 0 1px #5491d6, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5491d6; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5491d6; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #5491d6; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #5491d6; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5491d6); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5491d6); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5491d6); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5491d6; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5491d6; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #5491d6; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5491d6; + background-color: #5491d6; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5491d6; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #5491d6; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5491d6; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #5491d6; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #5491d6; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #5491d6; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #5491d6; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(84, 145, 214, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #5491d6; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5491d6; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5491d6; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #5491d6; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #5491d6; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5491d6; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5491d6; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #5491d6; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #5491d6; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #5491d6; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5491d6; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5491d6; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #5491d6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5491d6; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5491d6; + border: solid #5491d6; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5491d6; + border: solid #5491d6; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5491d6; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #5491d6); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5491d6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #5491d6; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #5491d6; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #5491d6; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Dark-Havelock/gtk-3.0/thumbnail.png b/themes/Mint-Y-Dark-Havelock/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..6c8573b Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Havelock/index.theme b/themes/Mint-Y-Dark-Havelock/index.theme new file mode 100644 index 0000000..29d20aa --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Dark-Havelock +Comment=A dark flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Dark-Havelock +MetacityTheme=Mint-Y-Dark-Havelock +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Dark-Havelock/metacity-1/button-bg.svg b/themes/Mint-Y-Dark-Havelock/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/metacity-1/button-border.svg b/themes/Mint-Y-Dark-Havelock/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/metacity-1/close-icon.svg b/themes/Mint-Y-Dark-Havelock/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/metacity-1/max-icon.svg b/themes/Mint-Y-Dark-Havelock/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Dark-Havelock/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..03f75da --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/metacity-1/metacity-theme-2.xml @@ -0,0 +1,768 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Havelock/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Dark-Havelock/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..b2cba98 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1026 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#d7cfcf" /> +<constant name="C_title_unfocused" value="#d7cfcf" /> + +<constant name="C_wm_bg_focused" value="#2f2f2f" /> +<constant name="C_wm_bg_unfocused" value="#2f2f2f" /> + +<constant name="C_wm_border" value="#2f2f2f" /> + +<constant name="C_wm_highlight" value="#373737" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#5491d6)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#5491d6)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#5491d6)/0.8" /> + +<constant name="C_icon_close_bg" value="#2f2f2f" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#4C4C4C" /> +<constant name="C_button_bg_active" value="#949494" /> + +<constant name="C_button_border_hover" value="#262626" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#666666" /> +<constant name="C_icon_bg_hover" value="#C4C4C4" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Havelock/metacity-1/min-icon.svg b/themes/Mint-Y-Dark-Havelock/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/metacity-1/thumbnail.png b/themes/Mint-Y-Dark-Havelock/metacity-1/thumbnail.png new file mode 100644 index 0000000..e1f72e4 Binary files /dev/null and b/themes/Mint-Y-Dark-Havelock/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Havelock/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Dark-Havelock/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/close-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/close-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/close-prelight.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/close-pressed.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/hide-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/left-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/left-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/menu-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/right-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/right-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/shade-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/stick-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/themerc b/themes/Mint-Y-Dark-Havelock/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-1-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-2-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-3-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-4-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-5-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/top-left-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/top-right-active.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Havelock/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Dark-Havelock/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Dark-Havelock/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/cinnamon.css b/themes/Mint-Y-Dark-Hibiscus/cinnamon/cinnamon.css new file mode 100644 index 0000000..cff7f62 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #D3D3D3; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(82, 82, 82, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #851042; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px #851042; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: rgba(211, 211, 211, 0.45); + border: 1px solid rgba(32, 32, 32, 0.55); + background-color: rgba(69, 69, 69, 0.55); + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #851042; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #D3D3D3; + background-color: #404040; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(211, 211, 211, 0.45); + background-color: #383838; + border-color: 1px solid #272727; + box-shadow: inset 0 2px 4px rgba(56, 56, 56, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #851042; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #851042; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(64, 64, 64, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #717171; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #606060; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #851042; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #202020; + -slider-border-color: transparent; + -slider-active-background-color: #851042; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("dark-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("dark-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #e01b6f; + text-decoration: underline; } + .cinnamon-link:hover { + color: #e9458b; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #D3D3D3; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #404040; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #D3D3D3; + border-color: rgba(211, 211, 211, 0.11); + background-color: rgba(211, 211, 211, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(211, 211, 211, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #D3D3D3; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(211, 211, 211, 0.45); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #2f2f2f; + -arrow-border-width: 1px; + -arrow-border-color: #202020; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #851042; + color: #ffffff; + border: 1px solid #851042; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #851042; + background-color: #851042; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #851042; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #851042; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #202020; + border-radius: 2px; + background-color: #404040; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #D3D3D3; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #D3D3D3; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(211, 211, 211, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(211, 211, 211, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #D3D3D3; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #851042; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(211, 211, 211, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(211, 211, 211, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #D3D3D3; } + .popup-menu #notification { + color: #D3D3D3; + border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #D3D3D3; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #D3D3D3; + border: 1px solid #202020; + background-color: #2f2f2f; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #851042; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #851042; + border: 0px solid #851042; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #D3D3D3; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #2f2f2f; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #D3D3D3; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #851042; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid #202020; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + border: 1px solid #851042; + background-color: #851042; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #404040; + border: 1px solid #202020; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(211, 211, 211, 0.45); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #D3D3D3; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #D3D3D3; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #D3D3D3; + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #D3D3D3; + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #851042; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #851042; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px #851042; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #222222; + -slider-border-color: transparent; + -slider-active-background-color: #851042; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #851042; } + .workspace-button:hover { + color: rgba(133, 16, 66, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #851042; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #851042; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #851042; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #D3D3D3; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #D3D3D3; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #202020; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #2f2f2f; + color: #D3D3D3; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #202020; + border-radius: 5px 5px 0 0; + background-color: #272727; + color: #D3D3D3; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #851042; + background-color: rgba(133, 16, 66, 0.3); } + +.photoframe-box { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(133, 16, 66, 0.3); + border: 1px solid #851042; } + .tile-preview.snap { + background-color: rgba(133, 16, 66, 0.6); } + +.tile-hud { + background-color: rgba(133, 16, 66, 0.3); + border: 1px solid #851042; } + .tile-hud.snap { + background-color: rgba(133, 16, 66, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..53c3a45 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#851042;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#851042;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..c94ddd3 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..16c27c8 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..2f8a68f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..fa6ab14 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..fdce694 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..b874aed --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..5c93df2 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..41688dd --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..f99c5d6 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/menu-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/menu-hover.svg new file mode 100644 index 0000000..a023a8e --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/menu.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/menu.svg new file mode 100644 index 0000000..44e295d --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/submenu.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/submenu.svg new file mode 100644 index 0000000..9369544 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/button-box.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/button-box.svg new file mode 100644 index 0000000..0342698 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/button-box.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/message.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/message.svg new file mode 100644 index 0000000..8d8bfab --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/modal.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/modal.svg new file mode 100644 index 0000000..ec0b945 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/switch/switch-off.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/switch/switch-off.svg new file mode 100644 index 0000000..5d6df1f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/switch/switch-on.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/switch/switch-on.svg new file mode 100644 index 0000000..cdaf922 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/dark-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/menu/menu-separator.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace-active.svg new file mode 100644 index 0000000..4a54d61 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/add-workspace.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/bg.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..fb957eb --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..f2c44a4 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close-active.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close-hover.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/corner-ripple-ltr.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/corner-ripple-ltr.svg new file mode 100644 index 0000000..ec3d261 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/corner-ripple-ltr.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/corner-ripple-rtl.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/corner-ripple-rtl.svg new file mode 100644 index 0000000..ec95067 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/corner-ripple-rtl.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/desklet-header.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/desklet.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/osd.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/overview-hover.png b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/overview.png b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/trash-icon.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/activities-active.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/activities.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/panel-top.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..b69b955 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/window-list-active-top.svg new file mode 100644 index 0000000..d2b8f15 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/cinnamon/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Hibiscus/cinnamon/thumbnail.png b/themes/Mint-Y-Dark-Hibiscus/cinnamon/thumbnail.png new file mode 100644 index 0000000..b892c37 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/apps.rc b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..dcba37c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..51ef506 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..1dbda3d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..9de0a08 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..d2f06c4 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..16604bd Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..d7641b4 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..26595ef Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..44920ba Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..9cf5f55 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..2386190 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..9f13d52 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..a2c2fb3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..29ad98b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..b73866a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..f5431a6 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..7ab983b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..ef08872 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..a7d3dcd Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..ee98f4f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button.png new file mode 100644 index 0000000..2d6977f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..33929f3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..26c5030 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..86acdca Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..e9f7c0f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..33d8376 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..3e70a72 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..8b67e5e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..f471363 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..177130d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..a20b08a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..4ca78f4 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..85ae155 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..65aa794 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..ce23e22 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..dfe70c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..e67ae2a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..0aad6dd Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..a78f484 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..a21fd44 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..b63573c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..3724d98 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..4e6d895 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..f3be72c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..8e06e28 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..cafcd34 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..7c8222c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..3f119b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..387de33 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..d03c69e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..4d95f7f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7e67d72 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..a19f255 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..7918ae9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..3375bd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..9b01f9e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..fcd4fcc Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..9b1daaf Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..e85003b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..1c13e3a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..0c43b58 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..44c0eb8 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..743d7e6 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..fd6f2ec Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..370b2ec Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..a22bcfe Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..63b4fcb Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..b10371f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..2a72ea1 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..ebb9ef7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/minus.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..6fef440 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..5594b6d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..b303b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..9a2c88b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..26200a9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..837e8cf Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/null.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/plus.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..cc63a1e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..1b8bcad Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..4f21456 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..c9d3e13 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..70f7fa7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..cce4d70 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..ed22c29 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..701cca4 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..c690bde Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..bddb0ac Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..3d1d371 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..342978c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..5bffc03 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..a1d2cf6 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..369c51c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..cef90d5 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..77a157e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..d307bd3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..88f8bf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..3ca1f86 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..a6a2a9e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..4f0f390 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..d82b1c9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..abec1f2 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..1038c5a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..065417b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..681e68f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..8d70513 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..f3efa12 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..2c98cf7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..efae909 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..259aab7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..1d8ea2c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..5b8f763 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..249dbbd Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..f9d3258 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..358ecc8 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..1c8a10a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..9f75516 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/gtkrc b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/gtkrc new file mode 100644 index 0000000..442a545 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#404040\nfg_color:#DADADA\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#8fa876\nselected_fg_color:#FFFFFF\ntext_color:#D3D3D3\nbg_color:#383838\ninsensitive_bg_color:#3e3e3e\ninsensitive_fg_color:#7f7f7f\nnotebook_bg:#404040\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#383838" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/main.rc b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/panel.rc b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..089c145 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..19c6ef1 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..2f03f96 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..ad00c49 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..efbc75d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..fb9e759 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..4827943 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..8e5c2a1 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..8f6daf5 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..29b4e0a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..c43f9c3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..5eb7caa Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..dd6e3b1 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..40c3278 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..7d55a2e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..856c246 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..1c93dc6 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..4f12140 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..335e71a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..d919b9c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..15a420b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..da1c01e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..77a5e28 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..a3469d9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..154b982 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..70fd58e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..7c6a76d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..eba25b5 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..0cbccc4 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..5a0f68f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..51afedd Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..75d572a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..21f7c8f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..dd186c2 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..3bf5ba0 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..f853bb9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..cad4427 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..2ecf36a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..5fc9e0b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..b168f14 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..0790193 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..67f3760 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..3e5cc54 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..5da58e6 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..a7a7d44 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..633c736 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..22b0dc1 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..3552aad Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..325b022 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..a844dff Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..965f41a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..1f2c400 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..e9c86f7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..d4b1dde Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..ccd93aa Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..f958a30 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..2deb8d3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..ec39508 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..6c2971b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..6bee127 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..3437f33 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..6d218dc Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..75def4b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..e7d01eb Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..a98387d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..9ccfe68 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..75def4b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..e7d01eb Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..ce85be2 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..ce6e0ba Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..2deb8d3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..ec39508 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..6c1c870 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..1d4f397 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..0046f77 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..48fc0f7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..0046f77 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..48fc0f7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/gtk.css new file mode 100644 index 0000000..6b49fda --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/gtk.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #851042; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #851042; + background-color: rgba(133, 16, 66, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #851042; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #851042, inset -1px 0 #851042, inset 0 1px #851042, inset 0 -1px #851042; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #851042; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #851042; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #851042); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#851042), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#851042), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #851042; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#851042), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #851042; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #851042; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #851042; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #851042; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #851042; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #851042; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #851042; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #851042; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #851042); } + GtkTreeView.view.progressbar:selected { + color: #851042; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #851042; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #851042; + box-shadow: inset 1px 1px 0 1px #851042, inset -1px 0 0 1px #851042, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #851042; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #851042; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #851042; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #851042; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #851042); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #851042); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #851042); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #851042; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #851042; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #851042; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #851042; + background-color: #851042; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #851042; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #851042; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #851042; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #851042; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #851042; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #851042; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #851042; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(133, 16, 66, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #851042; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #851042; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #851042; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #851042; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #851042; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #851042; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #851042; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #851042; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #851042; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #851042; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #851042; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #851042; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #851042; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #851042; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #851042; + border: solid #851042; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #851042; + border: solid #851042; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #851042; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #851042); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #851042; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #851042; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #851042; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #851042; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/thumbnail.png b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..6c8573b Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/index.theme b/themes/Mint-Y-Dark-Hibiscus/index.theme new file mode 100644 index 0000000..24a115f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Dark-Hibiscus +Comment=A dark flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Dark-Hibiscus +MetacityTheme=Mint-Y-Dark-Hibiscus +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Dark-Hibiscus/metacity-1/button-bg.svg b/themes/Mint-Y-Dark-Hibiscus/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/metacity-1/button-border.svg b/themes/Mint-Y-Dark-Hibiscus/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/metacity-1/close-icon.svg b/themes/Mint-Y-Dark-Hibiscus/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/metacity-1/max-icon.svg b/themes/Mint-Y-Dark-Hibiscus/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Dark-Hibiscus/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..03f75da --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/metacity-1/metacity-theme-2.xml @@ -0,0 +1,768 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Hibiscus/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Dark-Hibiscus/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..4ec44fa --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1026 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#d7cfcf" /> +<constant name="C_title_unfocused" value="#d7cfcf" /> + +<constant name="C_wm_bg_focused" value="#2f2f2f" /> +<constant name="C_wm_bg_unfocused" value="#2f2f2f" /> + +<constant name="C_wm_border" value="#2f2f2f" /> + +<constant name="C_wm_highlight" value="#373737" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#851042)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#851042)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#851042)/0.8" /> + +<constant name="C_icon_close_bg" value="#2f2f2f" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#4C4C4C" /> +<constant name="C_button_bg_active" value="#949494" /> + +<constant name="C_button_border_hover" value="#262626" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#666666" /> +<constant name="C_icon_bg_hover" value="#C4C4C4" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Hibiscus/metacity-1/min-icon.svg b/themes/Mint-Y-Dark-Hibiscus/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/metacity-1/thumbnail.png b/themes/Mint-Y-Dark-Hibiscus/metacity-1/thumbnail.png new file mode 100644 index 0000000..e1f72e4 Binary files /dev/null and b/themes/Mint-Y-Dark-Hibiscus/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Hibiscus/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Dark-Hibiscus/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-prelight.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-pressed.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/left-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/left-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/right-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/right-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/themerc b/themes/Mint-Y-Dark-Hibiscus/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-1-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-2-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-3-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-4-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-5-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-left-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-right-active.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Dark-Hibiscus/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Lightning/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Lightning/gtk-3.0/gtk.css index 9e536e7..9940467 100644 --- a/themes/Mint-Y-Dark-Lightning/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Dark-Lightning/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid #FFA726; + background-color: rgba(255, 167, 38, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/cinnamon.css b/themes/Mint-Y-Dark-Majestic/cinnamon/cinnamon.css new file mode 100644 index 0000000..f81a81f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #D3D3D3; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(82, 82, 82, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #5f5f5f; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px #5f5f5f; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: rgba(211, 211, 211, 0.45); + border: 1px solid rgba(32, 32, 32, 0.55); + background-color: rgba(69, 69, 69, 0.55); + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #5f5f5f; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #D3D3D3; + background-color: #404040; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(211, 211, 211, 0.45); + background-color: #383838; + border-color: 1px solid #272727; + box-shadow: inset 0 2px 4px rgba(56, 56, 56, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #5f5f5f; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #5f5f5f; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(64, 64, 64, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #717171; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #606060; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #5f5f5f; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #202020; + -slider-border-color: transparent; + -slider-active-background-color: #5f5f5f; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("dark-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("dark-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #929292; + text-decoration: underline; } + .cinnamon-link:hover { + color: #acacac; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #D3D3D3; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #404040; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #D3D3D3; + border-color: rgba(211, 211, 211, 0.11); + background-color: rgba(211, 211, 211, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(211, 211, 211, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #D3D3D3; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(211, 211, 211, 0.45); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #2f2f2f; + -arrow-border-width: 1px; + -arrow-border-color: #202020; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #5f5f5f; + color: #ffffff; + border: 1px solid #5f5f5f; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #5f5f5f; + background-color: #5f5f5f; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #5f5f5f; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #5f5f5f; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #202020; + border-radius: 2px; + background-color: #404040; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #D3D3D3; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #D3D3D3; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(211, 211, 211, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(211, 211, 211, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #D3D3D3; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #5f5f5f; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(211, 211, 211, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(211, 211, 211, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #D3D3D3; } + .popup-menu #notification { + color: #D3D3D3; + border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #D3D3D3; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #D3D3D3; + border: 1px solid #202020; + background-color: #2f2f2f; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #5f5f5f; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #5f5f5f; + border: 0px solid #5f5f5f; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #D3D3D3; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #2f2f2f; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #D3D3D3; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #5f5f5f; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid #202020; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + border: 1px solid #5f5f5f; + background-color: #5f5f5f; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #404040; + border: 1px solid #202020; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(211, 211, 211, 0.45); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #D3D3D3; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #D3D3D3; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #D3D3D3; + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #D3D3D3; + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #5f5f5f; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #5f5f5f; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px #5f5f5f; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #222222; + -slider-border-color: transparent; + -slider-active-background-color: #5f5f5f; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #5f5f5f; } + .workspace-button:hover { + color: rgba(95, 95, 95, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #5f5f5f; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #5f5f5f; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #5f5f5f; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #D3D3D3; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #D3D3D3; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #202020; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #2f2f2f; + color: #D3D3D3; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #202020; + border-radius: 5px 5px 0 0; + background-color: #272727; + color: #D3D3D3; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #5f5f5f; + background-color: rgba(95, 95, 95, 0.3); } + +.photoframe-box { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(95, 95, 95, 0.3); + border: 1px solid #5f5f5f; } + .tile-preview.snap { + background-color: rgba(95, 95, 95, 0.6); } + +.tile-hud { + background-color: rgba(95, 95, 95, 0.3); + border: 1px solid #5f5f5f; } + .tile-hud.snap { + background-color: rgba(95, 95, 95, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..17decf8 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#5f5f5f;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#5f5f5f;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..f726199 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..52d53ad --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..0a119cb --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..10893c3 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..bdda151 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..e7fc04c --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..18c0981 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..b31fbd2 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..f99c5d6 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/menu-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/menu-hover.svg new file mode 100644 index 0000000..a023a8e --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/menu.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/menu.svg new file mode 100644 index 0000000..44e295d --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/submenu.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/submenu.svg new file mode 100644 index 0000000..9369544 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/button-box.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/button-box.svg new file mode 100644 index 0000000..0342698 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/button-box.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/message.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/message.svg new file mode 100644 index 0000000..219f9d3 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/modal.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/modal.svg new file mode 100644 index 0000000..ec0b945 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/switch/switch-off.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/switch/switch-off.svg new file mode 100644 index 0000000..5d6df1f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/switch/switch-on.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/switch/switch-on.svg new file mode 100644 index 0000000..6f606d3 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/dark-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/menu/menu-separator.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace-active.svg new file mode 100644 index 0000000..4a54d61 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/add-workspace.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/bg.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..fb957eb --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..f2c44a4 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close-active.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close-hover.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/corner-ripple-ltr.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/corner-ripple-ltr.svg new file mode 100644 index 0000000..ec3d261 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/corner-ripple-ltr.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/corner-ripple-rtl.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/corner-ripple-rtl.svg new file mode 100644 index 0000000..ec95067 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/corner-ripple-rtl.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/desklet-header.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/desklet.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/osd.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/overview-hover.png b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/overview.png b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/misc/trash-icon.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/panel/activities-active.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/panel/activities.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/panel/panel-top.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..b69b955 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/window-list-active-top.svg new file mode 100644 index 0000000..d2b8f15 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/cinnamon/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Majestic/cinnamon/thumbnail.png b/themes/Mint-Y-Dark-Majestic/cinnamon/thumbnail.png new file mode 100644 index 0000000..b892c37 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/apps.rc b/themes/Mint-Y-Dark-Majestic/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..dcba37c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..51ef506 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..1dbda3d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..9de0a08 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..d2f06c4 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..16604bd Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..d7641b4 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..26595ef Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..44920ba Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..9cf5f55 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..2386190 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..9f13d52 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..a2c2fb3 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..29ad98b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..b73866a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..f5431a6 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..7ab983b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..ef08872 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..a7d3dcd Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..ee98f4f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button.png new file mode 100644 index 0000000..2d6977f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..f441519 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..8fc6bb0 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..86acdca Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..e9f7c0f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..33d8376 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..3e70a72 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..8b67e5e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..f471363 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..177130d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..a20b08a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..b408329 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..ec7d6e8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..a3b3950 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..74b43c3 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..dfe70c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..e67ae2a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..0aad6dd Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..a78f484 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..a21fd44 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..b63573c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..3724d98 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..4e6d895 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..f3be72c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..8e06e28 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..cafcd34 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..7c8222c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..354e021 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..d5e0baf Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..d03c69e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..4d95f7f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7e67d72 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..a19f255 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..7918ae9 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..3375bd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..9b01f9e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..fcd4fcc Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..9b1daaf Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..e85003b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..7bdca6b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..f09a9e5 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..44c0eb8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..743d7e6 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..a6c444d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..f7e254a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..a22bcfe Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..63b4fcb Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..b10371f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..21d23d9 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..ebb9ef7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/minus.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..6fef440 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..ecf814c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..b303b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..9a2c88b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..26200a9 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..837e8cf Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/null.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/plus.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..cc63a1e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..f4003e8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..d42fbbc Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..ab15d05 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..e828290 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..cce4d70 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..ed22c29 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..9bf87e8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..c690bde Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..bddb0ac Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..3d1d371 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..342978c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..8974fd8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..5b0a50a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..369c51c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..cef90d5 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..77a157e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..d307bd3 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..88f8bf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..3ca1f86 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..a6a2a9e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..4f0f390 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..34c7092 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..abec1f2 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..1038c5a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..065417b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..681e68f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..b09c7a2 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..f3efa12 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..2c98cf7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..efae909 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..259aab7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..1d8ea2c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..7bb6d15 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..249dbbd Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..f9d3258 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..358ecc8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..1c8a10a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..9f75516 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/gtkrc b/themes/Mint-Y-Dark-Majestic/gtk-2.0/gtkrc new file mode 100644 index 0000000..442a545 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#404040\nfg_color:#DADADA\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#8fa876\nselected_fg_color:#FFFFFF\ntext_color:#D3D3D3\nbg_color:#383838\ninsensitive_bg_color:#3e3e3e\ninsensitive_fg_color:#7f7f7f\nnotebook_bg:#404040\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#383838" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/main.rc b/themes/Mint-Y-Dark-Majestic/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-2.0/panel.rc b/themes/Mint-Y-Dark-Majestic/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..4f834a1 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..393078b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..f45e683 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..161508e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..efe63d3 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..387177d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..5cf7249 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..291c118 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..b5f2d99 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..204aa4f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..c41c5f2 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..32272b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..5ab4e40 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..32ace40 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..abb54e5 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..f23f253 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..5751894 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..64daf18 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..244148b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..9820b66 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..c37753a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..fbe2f85 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..b882262 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..08e100c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..7855f07 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..5b4c20d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..f5231aa Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..5dca039 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..43180e5 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..3bfc96e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..e0ef4ba Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..79fe504 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..729da6e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..0501e5e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..2ec2874 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..9b831ca Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..d955644 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..31a144b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..99b9ccd Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..caf88bb Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..b12fa01 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..4bf25f2 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..f569767 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..84ba228 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..8c3fd92 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..35a0737 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..129edab Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..2c47b36 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..bb88f1d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..70e0153 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..03f2400 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..4085ebc Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..47e8bb0 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..f84fdff Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..d71a094 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..8df9ed7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..0af4c4a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..625343c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..beae9a7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..d6cd757 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..e680791 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..b5eef14 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..d95bfed Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..2a22860 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..b2fc09a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..5daa448 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..d95bfed Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..2a22860 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..96b4711 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..84fe73d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..0af4c4a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..625343c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..5bfff6f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..6cf7765 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..b467794 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..8c1695c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..b467794 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..8c1695c Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Majestic/gtk-3.0/gtk.css new file mode 100644 index 0000000..e2ab4f6 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/gtk-3.0/gtk.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5f5f5f; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #5f5f5f; + background-color: rgba(95, 95, 95, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5f5f5f; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #5f5f5f, inset -1px 0 #5f5f5f, inset 0 1px #5f5f5f, inset 0 -1px #5f5f5f; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5f5f5f; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5f5f5f; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #5f5f5f); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5f5f5f), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5f5f5f), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #5f5f5f; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5f5f5f), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #5f5f5f; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5f5f5f; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #5f5f5f; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #5f5f5f; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #5f5f5f; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #5f5f5f; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #5f5f5f; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5f5f5f; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #5f5f5f); } + GtkTreeView.view.progressbar:selected { + color: #5f5f5f; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #5f5f5f; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5f5f5f; + box-shadow: inset 1px 1px 0 1px #5f5f5f, inset -1px 0 0 1px #5f5f5f, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5f5f5f; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5f5f5f; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #5f5f5f; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #5f5f5f; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5f5f5f); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5f5f5f); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5f5f5f); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5f5f5f; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5f5f5f; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #5f5f5f; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5f5f5f; + background-color: #5f5f5f; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #5f5f5f; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5f5f5f; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #5f5f5f; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #5f5f5f; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #5f5f5f; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #5f5f5f; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(95, 95, 95, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #5f5f5f; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5f5f5f; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #5f5f5f; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5f5f5f; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5f5f5f; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #5f5f5f; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #5f5f5f; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #5f5f5f; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5f5f5f; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5f5f5f; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5f5f5f; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5f5f5f; + border: solid #5f5f5f; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5f5f5f; + border: solid #5f5f5f; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5f5f5f; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #5f5f5f); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #5f5f5f; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #5f5f5f; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #5f5f5f; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Dark-Majestic/gtk-3.0/thumbnail.png b/themes/Mint-Y-Dark-Majestic/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..6c8573b Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Majestic/index.theme b/themes/Mint-Y-Dark-Majestic/index.theme new file mode 100644 index 0000000..3f9ff81 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Dark-Majestic +Comment=A dark flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Dark-Majestic +MetacityTheme=Mint-Y-Dark-Majestic +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Dark-Majestic/metacity-1/button-bg.svg b/themes/Mint-Y-Dark-Majestic/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/metacity-1/button-border.svg b/themes/Mint-Y-Dark-Majestic/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/metacity-1/close-icon.svg b/themes/Mint-Y-Dark-Majestic/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/metacity-1/max-icon.svg b/themes/Mint-Y-Dark-Majestic/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Dark-Majestic/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..03f75da --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/metacity-1/metacity-theme-2.xml @@ -0,0 +1,768 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Majestic/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Dark-Majestic/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..0251102 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1026 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#d7cfcf" /> +<constant name="C_title_unfocused" value="#d7cfcf" /> + +<constant name="C_wm_bg_focused" value="#2f2f2f" /> +<constant name="C_wm_bg_unfocused" value="#2f2f2f" /> + +<constant name="C_wm_border" value="#2f2f2f" /> + +<constant name="C_wm_highlight" value="#373737" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#5f5f5f)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#5f5f5f)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#5f5f5f)/0.8" /> + +<constant name="C_icon_close_bg" value="#2f2f2f" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#4C4C4C" /> +<constant name="C_button_bg_active" value="#949494" /> + +<constant name="C_button_border_hover" value="#262626" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#666666" /> +<constant name="C_icon_bg_hover" value="#C4C4C4" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Majestic/metacity-1/min-icon.svg b/themes/Mint-Y-Dark-Majestic/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/metacity-1/thumbnail.png b/themes/Mint-Y-Dark-Majestic/metacity-1/thumbnail.png new file mode 100644 index 0000000..e1f72e4 Binary files /dev/null and b/themes/Mint-Y-Dark-Majestic/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Majestic/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Dark-Majestic/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/close-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/close-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/close-prelight.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/close-pressed.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/hide-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/left-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/left-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/menu-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/right-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/right-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/shade-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/stick-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/themerc b/themes/Mint-Y-Dark-Majestic/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-1-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-2-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-3-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-4-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-5-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/top-left-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/top-right-active.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Majestic/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Dark-Majestic/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Dark-Majestic/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/cinnamon.css b/themes/Mint-Y-Dark-Moka/cinnamon/cinnamon.css new file mode 100644 index 0000000..5349ac3 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #D3D3D3; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(82, 82, 82, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #e1d5e5; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px #e1d5e5; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: rgba(211, 211, 211, 0.45); + border: 1px solid rgba(32, 32, 32, 0.55); + background-color: rgba(69, 69, 69, 0.55); + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #e1d5e5; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #D3D3D3; + background-color: #404040; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(211, 211, 211, 0.45); + background-color: #383838; + border-color: 1px solid #272727; + box-shadow: inset 0 2px 4px rgba(56, 56, 56, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #e1d5e5; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #e1d5e5; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(64, 64, 64, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #717171; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #606060; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #e1d5e5; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #202020; + -slider-border-color: transparent; + -slider-active-background-color: #e1d5e5; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("dark-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("dark-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: white; + text-decoration: underline; } + .cinnamon-link:hover { + color: white; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #D3D3D3; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #404040; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #D3D3D3; + border-color: rgba(211, 211, 211, 0.11); + background-color: rgba(211, 211, 211, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(211, 211, 211, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #D3D3D3; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(211, 211, 211, 0.45); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #2f2f2f; + -arrow-border-width: 1px; + -arrow-border-color: #202020; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #e1d5e5; + color: #ffffff; + border: 1px solid #e1d5e5; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #e1d5e5; + background-color: #e1d5e5; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #e1d5e5; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #e1d5e5; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #202020; + border-radius: 2px; + background-color: #404040; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #D3D3D3; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #D3D3D3; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(211, 211, 211, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(211, 211, 211, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #D3D3D3; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #e1d5e5; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(211, 211, 211, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(211, 211, 211, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #D3D3D3; } + .popup-menu #notification { + color: #D3D3D3; + border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #D3D3D3; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #D3D3D3; + border: 1px solid #202020; + background-color: #2f2f2f; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #e1d5e5; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #e1d5e5; + border: 0px solid #e1d5e5; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #D3D3D3; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #2f2f2f; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #D3D3D3; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #e1d5e5; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid #202020; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + border: 1px solid #e1d5e5; + background-color: #e1d5e5; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #404040; + border: 1px solid #202020; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(211, 211, 211, 0.45); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #D3D3D3; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #D3D3D3; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #D3D3D3; + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #D3D3D3; + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #e1d5e5; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #e1d5e5; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px #e1d5e5; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #222222; + -slider-border-color: transparent; + -slider-active-background-color: #e1d5e5; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #e1d5e5; } + .workspace-button:hover { + color: rgba(225, 213, 229, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #e1d5e5; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #e1d5e5; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #e1d5e5; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #D3D3D3; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #D3D3D3; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #202020; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #2f2f2f; + color: #D3D3D3; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #202020; + border-radius: 5px 5px 0 0; + background-color: #272727; + color: #D3D3D3; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #e1d5e5; + background-color: rgba(225, 213, 229, 0.3); } + +.photoframe-box { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(225, 213, 229, 0.3); + border: 1px solid #e1d5e5; } + .tile-preview.snap { + background-color: rgba(225, 213, 229, 0.6); } + +.tile-hud { + background-color: rgba(225, 213, 229, 0.3); + border: 1px solid #e1d5e5; } + .tile-hud.snap { + background-color: rgba(225, 213, 229, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..e5ec85a --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#e1d5e5;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#e1d5e5;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..d2f9c7a --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..b6fd461 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..16a784f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..ad93e38 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..6a72b8a --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..a8cb0c4 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..9037194 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..940cca1 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..f99c5d6 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/menu-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/menu-hover.svg new file mode 100644 index 0000000..a023a8e --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/menu.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/menu.svg new file mode 100644 index 0000000..44e295d --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/submenu.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/submenu.svg new file mode 100644 index 0000000..9369544 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/button-box.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/button-box.svg new file mode 100644 index 0000000..0342698 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/button-box.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/message.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/message.svg new file mode 100644 index 0000000..02b60db --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/modal.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/modal.svg new file mode 100644 index 0000000..ec0b945 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/switch/switch-off.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/switch/switch-off.svg new file mode 100644 index 0000000..5d6df1f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/switch/switch-on.svg b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/switch/switch-on.svg new file mode 100644 index 0000000..266aa1c --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/dark-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/menu/menu-separator.svg b/themes/Mint-Y-Dark-Moka/cinnamon/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace-active.svg new file mode 100644 index 0000000..4a54d61 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/add-workspace.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/bg.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..fb957eb --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..f2c44a4 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/close-active.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/close-hover.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/close.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/corner-ripple-ltr.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/corner-ripple-ltr.svg new file mode 100644 index 0000000..ec3d261 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/corner-ripple-ltr.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/corner-ripple-rtl.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/corner-ripple-rtl.svg new file mode 100644 index 0000000..ec95067 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/corner-ripple-rtl.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/desklet-header.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/desklet.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/osd.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/overview-hover.png b/themes/Mint-Y-Dark-Moka/cinnamon/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/cinnamon/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/overview.png b/themes/Mint-Y-Dark-Moka/cinnamon/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/cinnamon/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/misc/trash-icon.svg b/themes/Mint-Y-Dark-Moka/cinnamon/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/panel/activities-active.svg b/themes/Mint-Y-Dark-Moka/cinnamon/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/panel/activities.svg b/themes/Mint-Y-Dark-Moka/cinnamon/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Moka/cinnamon/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/panel/panel-top.svg b/themes/Mint-Y-Dark-Moka/cinnamon/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Moka/cinnamon/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..b69b955 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Moka/cinnamon/panel/window-list-active-top.svg new file mode 100644 index 0000000..d2b8f15 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/cinnamon/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Moka/cinnamon/thumbnail.png b/themes/Mint-Y-Dark-Moka/cinnamon/thumbnail.png new file mode 100644 index 0000000..b892c37 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/apps.rc b/themes/Mint-Y-Dark-Moka/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..dcba37c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..51ef506 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..1dbda3d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..9de0a08 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..d2f06c4 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..16604bd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..d7641b4 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..26595ef Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..44920ba Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..9cf5f55 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..2386190 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..9f13d52 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..a2c2fb3 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..29ad98b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..b73866a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..f5431a6 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..7ab983b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..ef08872 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..a7d3dcd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..ee98f4f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button.png new file mode 100644 index 0000000..2d6977f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..bacd8fb Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..5f3f475 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..86acdca Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..e9f7c0f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..33d8376 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..3e70a72 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..8b67e5e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..f471363 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..177130d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..a20b08a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..c3733c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..8887c0a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..54c5d48 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..d72f1ce Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..dfe70c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..e67ae2a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..0aad6dd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..a78f484 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..a21fd44 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..b63573c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..3724d98 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..4e6d895 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..f3be72c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..8e06e28 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..cafcd34 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..7c8222c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..e682520 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..b236521 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..d03c69e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..4d95f7f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7e67d72 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..a19f255 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..7918ae9 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..3375bd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..9b01f9e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..fcd4fcc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..9b1daaf Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..e85003b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..534f2a8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..afdd7ad Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..44c0eb8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..743d7e6 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..cd2e977 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..f101601 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..a22bcfe Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..63b4fcb Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..b10371f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..d3d7aec Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..ebb9ef7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/minus.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..6fef440 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..62d7736 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..b303b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..9a2c88b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..26200a9 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..837e8cf Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/null.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/plus.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..cc63a1e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..3b6a315 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..4bf8de4 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..5ba66d6 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..7fcecbc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..cce4d70 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..ed22c29 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..f44a5fc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..c690bde Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..bddb0ac Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..3d1d371 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..342978c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..8c7b8f1 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..195890c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..369c51c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..cef90d5 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..77a157e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..d307bd3 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..88f8bf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..3ca1f86 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..a6a2a9e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..4f0f390 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..1e87862 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..abec1f2 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..1038c5a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..065417b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..681e68f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..2275727 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..f3efa12 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..2c98cf7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..efae909 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..259aab7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..1d8ea2c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..3da2ccc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..249dbbd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..f9d3258 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..358ecc8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..1c8a10a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..9f75516 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/gtkrc b/themes/Mint-Y-Dark-Moka/gtk-2.0/gtkrc new file mode 100644 index 0000000..442a545 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#404040\nfg_color:#DADADA\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#8fa876\nselected_fg_color:#FFFFFF\ntext_color:#D3D3D3\nbg_color:#383838\ninsensitive_bg_color:#3e3e3e\ninsensitive_fg_color:#7f7f7f\nnotebook_bg:#404040\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#383838" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/main.rc b/themes/Mint-Y-Dark-Moka/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-2.0/panel.rc b/themes/Mint-Y-Dark-Moka/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..f8c791e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..6905658 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..1c5fade Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..1b57c5f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..ad08972 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..d2f4f46 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..7b9d14e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..2388368 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..28eb4f8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..c077b91 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..6376575 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..b530444 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..a8b2196 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..aebdc87 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..87d4508 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..542d6bd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..e1b4e53 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..fd18b62 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..bf5bc2c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..2ee1876 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..7d1b7c1 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..6774ef7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..fd37c5d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..32cba5a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..0880fb5 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..458fac3 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..cda3817 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..c09e6af Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..89603a4 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..3bce158 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..ac63c8f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..ad15855 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..2cf56f6 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..0d9f2ae Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..99c0a35 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..515cfa8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..9a569dd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..1a56c33 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..594ea7d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..7257257 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..c3f4c3b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..57b3b64 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..0fb1ba2 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..afd068e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..08c13f0 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..0272809 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..dbe5505 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..31391c2 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..94c467a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..902acdc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..f7d8cd4 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..e329a8d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..f49ee4e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..c989a83 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..12aa37a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..c1fb0dd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..6cf7efd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..8b7043d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..1680cdd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..c7ded8c Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..d6ebdef Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..ee83523 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..a7e27df Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..efa97f8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..e46cfd5 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..3a286bb Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..a7e27df Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..efa97f8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..7492a0d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..dcbc0b0 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..6cf7efd Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..8b7043d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..5028dbc Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..f092f68 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..b6bb341 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..4b1271a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..b6bb341 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..4b1271a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Moka/gtk-3.0/gtk.css new file mode 100644 index 0000000..3bcf811 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/gtk-3.0/gtk.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #e1d5e5; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #e1d5e5; + background-color: rgba(225, 213, 229, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #e1d5e5; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #e1d5e5, inset -1px 0 #e1d5e5, inset 0 1px #e1d5e5, inset 0 -1px #e1d5e5; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #e1d5e5; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #e1d5e5; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #e1d5e5); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#e1d5e5), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e1d5e5), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #e1d5e5; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e1d5e5), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #e1d5e5; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #e1d5e5; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #e1d5e5; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #e1d5e5; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #e1d5e5; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #e1d5e5; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #e1d5e5; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #e1d5e5; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #e1d5e5); } + GtkTreeView.view.progressbar:selected { + color: #e1d5e5; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #e1d5e5; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #e1d5e5; + box-shadow: inset 1px 1px 0 1px #e1d5e5, inset -1px 0 0 1px #e1d5e5, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #e1d5e5; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #e1d5e5; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #e1d5e5; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #e1d5e5; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #e1d5e5); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #e1d5e5); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #e1d5e5); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #e1d5e5; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #e1d5e5; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #e1d5e5; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #e1d5e5; + background-color: #e1d5e5; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #e1d5e5; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #e1d5e5; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #e1d5e5; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #e1d5e5; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #e1d5e5; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #e1d5e5; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(225, 213, 229, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #e1d5e5; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #e1d5e5; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #e1d5e5; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #e1d5e5; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #e1d5e5; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #e1d5e5; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #e1d5e5; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #e1d5e5; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #e1d5e5; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #e1d5e5; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #e1d5e5; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #e1d5e5; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #e1d5e5; + border: solid #e1d5e5; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #e1d5e5; + border: solid #e1d5e5; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #e1d5e5; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #e1d5e5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #e1d5e5; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #e1d5e5; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #e1d5e5; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #e1d5e5; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Dark-Moka/gtk-3.0/thumbnail.png b/themes/Mint-Y-Dark-Moka/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..6c8573b Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Moka/index.theme b/themes/Mint-Y-Dark-Moka/index.theme new file mode 100644 index 0000000..7f411e3 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Dark-Moka +Comment=A dark flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Dark-Moka +MetacityTheme=Mint-Y-Dark-Moka +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Dark-Moka/metacity-1/button-bg.svg b/themes/Mint-Y-Dark-Moka/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/metacity-1/button-border.svg b/themes/Mint-Y-Dark-Moka/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/metacity-1/close-icon.svg b/themes/Mint-Y-Dark-Moka/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/metacity-1/max-icon.svg b/themes/Mint-Y-Dark-Moka/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Dark-Moka/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..03f75da --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/metacity-1/metacity-theme-2.xml @@ -0,0 +1,768 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Moka/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Dark-Moka/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..044a0d5 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1026 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#d7cfcf" /> +<constant name="C_title_unfocused" value="#d7cfcf" /> + +<constant name="C_wm_bg_focused" value="#2f2f2f" /> +<constant name="C_wm_bg_unfocused" value="#2f2f2f" /> + +<constant name="C_wm_border" value="#2f2f2f" /> + +<constant name="C_wm_highlight" value="#373737" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#e1d5e5)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#e1d5e5)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#e1d5e5)/0.8" /> + +<constant name="C_icon_close_bg" value="#2f2f2f" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#4C4C4C" /> +<constant name="C_button_bg_active" value="#949494" /> + +<constant name="C_button_border_hover" value="#262626" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#666666" /> +<constant name="C_icon_bg_hover" value="#C4C4C4" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Moka/metacity-1/min-icon.svg b/themes/Mint-Y-Dark-Moka/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/metacity-1/thumbnail.png b/themes/Mint-Y-Dark-Moka/metacity-1/thumbnail.png new file mode 100644 index 0000000..e1f72e4 Binary files /dev/null and b/themes/Mint-Y-Dark-Moka/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Moka/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Dark-Moka/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/bottom-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/close-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/close-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/close-prelight.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/close-pressed.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/hide-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/left-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/left-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/maximize-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/menu-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/right-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/right-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/shade-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/stick-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/themerc b/themes/Mint-Y-Dark-Moka/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-1-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-2-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-3-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-4-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-5-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/top-left-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/top-right-active.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Moka/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Dark-Moka/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Dark-Moka/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Polo/gtk-3.0/gtk.css index c8d05e3..3b1235f 100644 --- a/themes/Mint-Y-Dark-Polo/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Dark-Polo/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid #688BC6; + background-color: rgba(104, 139, 198, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/bottom-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/close-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/close-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/close-prelight.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/close-pressed.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/hide-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/left-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/left-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/maximize-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/menu-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/right-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/right-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/shade-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/stick-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/themerc b/themes/Mint-Y-Dark-Polo/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-1-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-2-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-3-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-4-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-5-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/top-left-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/top-right-active.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Polo/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Dark-Polo/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Dark-Polo/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Sidecar/cinnamon/cinnamon.css b/themes/Mint-Y-Dark-Sidecar/cinnamon/cinnamon.css index 7ad3881..ea1254b 100644 --- a/themes/Mint-Y-Dark-Sidecar/cinnamon/cinnamon.css +++ b/themes/Mint-Y-Dark-Sidecar/cinnamon/cinnamon.css @@ -191,7 +191,7 @@ StScrollBar { color: white; text-decoration: underline; } .cinnamon-link:hover { - color: white; } + color: black; } #Tooltip { border: 1px solid #d0d0d0; @@ -282,13 +282,12 @@ StScrollBar { #panel { font-weight: bold; - height: 27px; } + height: 27px; + rgba(152, 13, 13, 0.1); } #panelLeft { spacing: 4px; } #panelLeft:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(255, 0, 0, 0.05); - background-gradient-end: rgba(255, 0, 0, 0.2); } + rgba(152, 13, 13, 0.5); } #panelLeft:ltr { padding-right: 4px; } #panelLeft:rtl { diff --git a/themes/Mint-Y-Dark-Sidecar/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Sidecar/gtk-3.0/gtk.css index 2a0a21f..a77df9b 100644 --- a/themes/Mint-Y-Dark-Sidecar/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Dark-Sidecar/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid ##FFEDB5; + background-color: rgba(255, 237, 181, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } @@ -246,7 +246,7 @@ GtkSearchEntry.entry { .button:active { color: #DADADA; } .button:active:hover, .button:checked { - color: #ffffff; } + color: #000000; } .button.flat:insensitive, .sidebar-button.button:insensitive { border-color: transparent; background-color: transparent; diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/cinnamon.css b/themes/Mint-Y-Dark-Watusi/cinnamon/cinnamon.css new file mode 100644 index 0000000..76a3354 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #D3D3D3; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #454545; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(82, 82, 82, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #D3D3D3; + background-color: #525252; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #1080e4; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px #1080e4; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: rgba(211, 211, 211, 0.45); + border: 1px solid rgba(32, 32, 32, 0.55); + background-color: rgba(69, 69, 69, 0.55); + box-shadow: inset 0 2px 4px rgba(69, 69, 69, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #1080e4; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #D3D3D3; + background-color: #404040; + border: 1px solid #202020; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(211, 211, 211, 0.45); + background-color: #383838; + border-color: 1px solid #272727; + box-shadow: inset 0 2px 4px rgba(56, 56, 56, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #1080e4; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #1080e4; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(64, 64, 64, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #717171; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #606060; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #1080e4; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #202020; + -slider-border-color: transparent; + -slider-active-background-color: #1080e4; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("dark-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("dark-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #66b1f4; + text-decoration: underline; } + .cinnamon-link:hover { + color: #95c9f8; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #D3D3D3; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #404040; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #D3D3D3; + border-color: rgba(211, 211, 211, 0.11); + background-color: rgba(211, 211, 211, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(211, 211, 211, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #D3D3D3; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(211, 211, 211, 0.45); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #2f2f2f; + -arrow-border-width: 1px; + -arrow-border-color: #202020; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #1080e4; + color: #ffffff; + border: 1px solid #1080e4; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #1080e4; + background-color: #1080e4; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #1080e4; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #1080e4; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #202020; + border-radius: 2px; + background-color: #404040; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #D3D3D3; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #D3D3D3; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(211, 211, 211, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(211, 211, 211, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #D3D3D3; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #1080e4; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(211, 211, 211, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(211, 211, 211, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #D3D3D3; } + .popup-menu #notification { + color: #D3D3D3; + border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #D3D3D3; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #D3D3D3; + border: 1px solid #202020; + background-color: #2f2f2f; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #1080e4; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #1080e4; + border: 0px solid #1080e4; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #D3D3D3; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #2f2f2f; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #202020; + border-radius: 3px; + background-color: #2f2f2f; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #D3D3D3; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #1080e4; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #D3D3D3; + background-color: #404040; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid #202020; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + border: 1px solid #1080e4; + background-color: #1080e4; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #404040; + border: 1px solid #202020; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(211, 211, 211, 0.45); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #D3D3D3; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #D3D3D3; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #D3D3D3; + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #D3D3D3; + background-color: #2f2f2f; + border: 1px solid #202020; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #1080e4; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(64, 64, 64, 0); + color: #ffffff; + background-color: #1080e4; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px #1080e4; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #222222; + -slider-border-color: transparent; + -slider-active-background-color: #1080e4; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #1080e4; } + .workspace-button:hover { + color: rgba(16, 128, 228, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #1080e4; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #1080e4; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #1080e4; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #D3D3D3; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #D3D3D3; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #202020; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #2f2f2f; + color: #D3D3D3; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #202020; + border-radius: 5px 5px 0 0; + background-color: #272727; + color: #D3D3D3; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #1080e4; + background-color: rgba(16, 128, 228, 0.3); } + +.photoframe-box { + border: 1px solid #202020; + border-radius: 5px; + background-color: #2f2f2f; + color: #D3D3D3; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(16, 128, 228, 0.3); + border: 1px solid #1080e4; } + .tile-preview.snap { + background-color: rgba(16, 128, 228, 0.6); } + +.tile-hud { + background-color: rgba(16, 128, 228, 0.3); + border: 1px solid #1080e4; } + .tile-hud.snap { + background-color: rgba(16, 128, 228, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..0adcf33 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#1080e4;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#1080e4;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..90f4852 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..dfb2b37 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..fa409c1 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..74800f9 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..8ae94cf --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..9ca2bd6 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..f7f1be2 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..1d560b6 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..f99c5d6 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/menu-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/menu-hover.svg new file mode 100644 index 0000000..a023a8e --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/menu.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/menu.svg new file mode 100644 index 0000000..44e295d --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/submenu.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/submenu.svg new file mode 100644 index 0000000..9369544 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/button-box.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/button-box.svg new file mode 100644 index 0000000..0342698 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/button-box.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/message.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/message.svg new file mode 100644 index 0000000..fa9e40d --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/modal.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/modal.svg new file mode 100644 index 0000000..ec0b945 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/switch/switch-off.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/switch/switch-off.svg new file mode 100644 index 0000000..5d6df1f --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/switch/switch-on.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/switch/switch-on.svg new file mode 100644 index 0000000..e3b74e8 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/dark-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/menu/menu-separator.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace-active.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace-active.svg new file mode 100644 index 0000000..4a54d61 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/add-workspace.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/bg.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..fb957eb --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-left.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..f2c44a4 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-right.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close-active.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close-hover.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/corner-ripple-ltr.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/corner-ripple-ltr.svg new file mode 100644 index 0000000..ec3d261 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/corner-ripple-ltr.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/corner-ripple-rtl.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/corner-ripple-rtl.svg new file mode 100644 index 0000000..ec95067 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/corner-ripple-rtl.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/desklet-header.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/desklet.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/osd.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/overview-hover.png b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/overview.png b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/overview.png differ diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/misc/trash-icon.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/panel/activities-active.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/panel/activities.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/panel/panel-bottom.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/panel/panel-top.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/panel/window-list-active-bottom.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..b69b955 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/panel/window-list-active-top.svg b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/window-list-active-top.svg new file mode 100644 index 0000000..d2b8f15 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/cinnamon/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Dark-Watusi/cinnamon/thumbnail.png b/themes/Mint-Y-Dark-Watusi/cinnamon/thumbnail.png new file mode 100644 index 0000000..b892c37 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/apps.rc b/themes/Mint-Y-Dark-Watusi/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..dcba37c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..51ef506 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..1dbda3d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..9de0a08 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..d2f06c4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..16604bd Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..d7641b4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..26595ef Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..44920ba Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..9cf5f55 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..2386190 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..9f13d52 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..a2c2fb3 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..29ad98b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..b73866a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..f5431a6 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..7ab983b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..ef08872 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..a7d3dcd Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..ee98f4f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button.png new file mode 100644 index 0000000..2d6977f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..56dea41 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..536c29a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..86acdca Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..e9f7c0f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..33d8376 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..3e70a72 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..8b67e5e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..f471363 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..177130d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..a20b08a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..e7dd2bc Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..9565015 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..3605d26 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..3c8482a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..dfe70c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..e67ae2a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..0aad6dd Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..a78f484 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..a21fd44 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..b63573c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..3724d98 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..4e6d895 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..f3be72c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..8e06e28 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..cafcd34 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..7c8222c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..fcd2da0 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..7b661a0 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..d03c69e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..4d95f7f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7e67d72 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..a19f255 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..7918ae9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..53cabfc Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..3375bd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..9b01f9e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..fcd4fcc Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..9b1daaf Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..e85003b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..a275339 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..005962c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..bfdb044 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..44c0eb8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..743d7e6 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..3cc1cb4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..fac9bf9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..a22bcfe Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..63b4fcb Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..b10371f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..d9a5c32 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..ebb9ef7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/minus.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..6fef440 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..de0e1f4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..b303b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..9a2c88b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..26200a9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..837e8cf Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..1cadcd7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/null.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/plus.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..cc63a1e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..2692b94 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..a91e329 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..6f803ec Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..79c141d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..cce4d70 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..ed22c29 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..84a8ce4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..c690bde Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..bddb0ac Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..3d1d371 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..342978c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..0722b77 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..e9b37a1 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..369c51c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..cef90d5 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..77a157e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..d307bd3 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..88f8bf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..3ca1f86 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..a6a2a9e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..4f0f390 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..f11234d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..abec1f2 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..1038c5a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..065417b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..681e68f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..0de85ab Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..f3efa12 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..2c98cf7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..efae909 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..259aab7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..1d8ea2c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..c63f182 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..249dbbd Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..f9d3258 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..358ecc8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..1c8a10a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..9f75516 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/gtkrc b/themes/Mint-Y-Dark-Watusi/gtk-2.0/gtkrc new file mode 100644 index 0000000..442a545 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#404040\nfg_color:#DADADA\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#8fa876\nselected_fg_color:#FFFFFF\ntext_color:#D3D3D3\nbg_color:#383838\ninsensitive_bg_color:#3e3e3e\ninsensitive_fg_color:#7f7f7f\nnotebook_bg:#404040\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#383838" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/main.rc b/themes/Mint-Y-Dark-Watusi/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-2.0/panel.rc b/themes/Mint-Y-Dark-Watusi/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..78ee1e4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..048c0d8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..761ab63 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..93be191 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..1866d89 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..64bd31b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..3a908ee Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..aba0036 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..e6e6b5d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..c376f40 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..e815fc2 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..2a4cf70 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..63680c7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..ee8b7a7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..820df91 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..31c6c6f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..00faa0e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..cd75c57 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..b5a1f97 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..c996734 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..9af9111 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..5f97b50 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..4e1891f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..78a24f7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..020a43c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..2b2638b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..030e87a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..d74ffc9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..4afee68 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..acaf956 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..e8fec8c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..3910f40 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..671fce0 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..5d4ae65 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..389d561 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..ac211f3 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..2b7741a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..822a0f3 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..f9ec947 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..f0e70a3 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..27f99a8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..c9e9a80 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..4aa9f0c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..08afe23 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..a9d6f2c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..72de2a9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..60eeb38 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..941e22a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..f2f575e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..1fb81c8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..0f6b00e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..c1a339a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..abee281 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..182411a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..bea0fb5 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..bf810d5 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..3f18f1d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..3d6f051 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..a2e86b1 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..95d7dae Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..3721344 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..0926a59 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..1cf3b0d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..5ff1f15 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..1742a2b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..a615723 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..1cf3b0d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..5ff1f15 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..411b79c Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..f96c09b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..3f18f1d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..3d6f051 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..b736725 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..48187f2 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..3b084de Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..360e91a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..3b084de Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..360e91a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/gtk.css b/themes/Mint-Y-Dark-Watusi/gtk-3.0/gtk.css new file mode 100644 index 0000000..7d8a322 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/gtk-3.0/gtk.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #1080e4; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #1080e4; + background-color: rgba(16, 128, 228, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #1080e4; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #1080e4, inset -1px 0 #1080e4, inset 0 1px #1080e4, inset 0 -1px #1080e4; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #1080e4; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #1080e4; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #1080e4); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#1080e4), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1080e4), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #1080e4; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1080e4), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #1080e4; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #1080e4; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #1080e4; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #1080e4; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #1080e4; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #1080e4; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #1080e4; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #1080e4; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #1080e4); } + GtkTreeView.view.progressbar:selected { + color: #1080e4; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #1080e4; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #1080e4; + box-shadow: inset 1px 1px 0 1px #1080e4, inset -1px 0 0 1px #1080e4, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #1080e4; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #1080e4; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #1080e4; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #1080e4; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #1080e4); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #1080e4); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #1080e4); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #1080e4; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #1080e4; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #1080e4; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #1080e4; + background-color: #1080e4; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #1080e4; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #1080e4; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #1080e4; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #1080e4; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #1080e4; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #1080e4; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #1080e4; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(16, 128, 228, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #1080e4; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #1080e4; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #1080e4; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #1080e4; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #1080e4; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #1080e4; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #1080e4; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #1080e4; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #1080e4; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #1080e4; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #1080e4; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #1080e4; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #1080e4; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #1080e4; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #1080e4; + border: solid #1080e4; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #1080e4; + border: solid #1080e4; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #1080e4; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #1080e4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #1080e4; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #1080e4; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #1080e4; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #1080e4; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Dark-Watusi/gtk-3.0/thumbnail.png b/themes/Mint-Y-Dark-Watusi/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..6c8573b Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Watusi/index.theme b/themes/Mint-Y-Dark-Watusi/index.theme new file mode 100644 index 0000000..ebaa5f5 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Dark-Watusi +Comment=A dark flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Dark-Watusi +MetacityTheme=Mint-Y-Dark-Watusi +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Dark-Watusi/metacity-1/button-bg.svg b/themes/Mint-Y-Dark-Watusi/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/metacity-1/button-border.svg b/themes/Mint-Y-Dark-Watusi/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/metacity-1/close-icon.svg b/themes/Mint-Y-Dark-Watusi/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/metacity-1/max-icon.svg b/themes/Mint-Y-Dark-Watusi/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Dark-Watusi/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..03f75da --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/metacity-1/metacity-theme-2.xml @@ -0,0 +1,768 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Watusi/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Dark-Watusi/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..1f7abf3 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1026 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#d7cfcf" /> +<constant name="C_title_unfocused" value="#d7cfcf" /> + +<constant name="C_wm_bg_focused" value="#2f2f2f" /> +<constant name="C_wm_bg_unfocused" value="#2f2f2f" /> + +<constant name="C_wm_border" value="#2f2f2f" /> + +<constant name="C_wm_highlight" value="#373737" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#1080e4)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#1080e4)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#1080e4)/0.8" /> + +<constant name="C_icon_close_bg" value="#2f2f2f" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#4C4C4C" /> +<constant name="C_button_bg_active" value="#949494" /> + +<constant name="C_button_border_hover" value="#262626" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#666666" /> +<constant name="C_icon_bg_hover" value="#C4C4C4" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Dark-Watusi/metacity-1/min-icon.svg b/themes/Mint-Y-Dark-Watusi/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/metacity-1/thumbnail.png b/themes/Mint-Y-Dark-Watusi/metacity-1/thumbnail.png new file mode 100644 index 0000000..e1f72e4 Binary files /dev/null and b/themes/Mint-Y-Dark-Watusi/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Dark-Watusi/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Dark-Watusi/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/close-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/close-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/close-prelight.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/close-pressed.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/hide-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/left-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/left-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/menu-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/right-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/right-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/shade-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/stick-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/themerc b/themes/Mint-Y-Dark-Watusi/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-1-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-2-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-3-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-4-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-5-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/top-left-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/top-right-active.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Dark-Watusi/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Dark-Watusi/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Dark-Watusi/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Arch/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Arch/gtk-3.0/gtk-dark.css index 720d0d3..3012394 100644 --- a/themes/Mint-Y-Darker-Arch/gtk-3.0/gtk-dark.css +++ b/themes/Mint-Y-Darker-Arch/gtk-3.0/gtk-dark.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid #1793D1; + background-color: rgba(23, 147, 209, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } diff --git a/themes/Mint-Y-Darker-Arch/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Arch/gtk-3.0/gtk.css index f18835a..4510da9 100644 --- a/themes/Mint-Y-Darker-Arch/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Darker-Arch/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #2790c5; - background-color: rgba(39, 144, 197, 0.2); } + border: 1px solid #1793D1; + background-color: rgba(23, 147, 209, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Darker-Fire/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Fire/gtk-3.0/gtk-dark.css index 42e7c7f..0904350 100644 --- a/themes/Mint-Y-Darker-Fire/gtk-3.0/gtk-dark.css +++ b/themes/Mint-Y-Darker-Fire/gtk-3.0/gtk-dark.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid #B41919; + background-color: rgba(180, 25, 25, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } diff --git a/themes/Mint-Y-Darker-Fire/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Fire/gtk-3.0/gtk.css index 73b0fe2..fb6bc70 100644 --- a/themes/Mint-Y-Darker-Fire/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Darker-Fire/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #922525; - background-color: rgba(146, 37, 37, 0.2); } + border: 1px solid #B41919; + background-color: rgba(180, 25, 25, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/apps.rc b/themes/Mint-Y-Darker-Havelock/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..a7db3ae Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..1d63761 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..0ec70e0 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..8105a2a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..1144f56 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..0fe0bfa Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..c2626d4 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..3306b08 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..b1ab2ab Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..e55cdcb Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..862f3c9 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..9b722bf Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..1e9beed Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/minus.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..48f13b1 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/null.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/plus.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..81c4531 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..69827c8 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..771dcc4 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..ae0c98a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..610f7e4 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..349a102 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..b8ab25b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..fefc80e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..b3168b5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..486ce5b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/gtkrc b/themes/Mint-Y-Darker-Havelock/gtk-2.0/gtkrc new file mode 100644 index 0000000..eaa265b --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfbfb\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/main.rc b/themes/Mint-Y-Darker-Havelock/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*<GtkMenu>*" style "menu" +widget_class "*<GtkMenuItem>*" style "menu_item" +widget_class "*<GtkCheckButton>*" style "checkbutton" +widget_class "*<GtkComboBox>" style "combobox" +widget_class "*<GtkComboBox>*<GtkButton>" style "combobox_button" +widget_class "*<GtkComboBox>*<GtkSeparator>" style "combobox_separator" +widget_class "*<GtkTreeView>*<GtkButton>*" style "treeview_header" +widget_class "*<GtkFileChooserDefault>*<GtkToolbar>" style "inline_toolbar" +widget_class "*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" +widget_class "*<GtkComboBoxEntry>*<GtkButton>" style "combobox_entry_button" +widget_class "*<GtkNotebook>*<GtkScrolledWindow>*<GtkViewport>" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "*<GtkNotebook>*<GtkEntry>" style "notebook_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkEntry>" style "entry" + +widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*<GtkEntry>" style "notebook_combobox_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*<GtkNotebook>.<GtkLabel>" style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "*<GtkNotebook>*<GtkEventBox>" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "*<GimpToolbox>*<GtkFrame>" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "*<GtkCustomMenu>*<GtkCustomMenuItem>*" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "<GtkEntry>" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*<GtkLabel>" style "text" +widget_class "*<GtkComboBox>*<GtkCellLayout>" style "text" +widget_class "*<GtkNotebook>*<GtkLabel>" style "text" +widget_class "*<GtkNotebook>*<GtkCellLayout>" style "text" diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>" style "toolbar_button" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkWidget>" style "toolbar_text" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>*<GtkLabel>" style "menubar-text" + diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" +widget_class "*CajaNavigationWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*CajaNavigationWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*CajaNavigationWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-2.0/panel.rc b/themes/Mint-Y-Darker-Havelock/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*<XfceArrowButton>" style "panelbuttons" +widget_class "*<XfceActionsPlugin>*" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel*<GtkMenuBar>*" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..d476c05 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..8db05ee Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..6331172 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..809aad7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..3e13fb7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..c2ede5a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..757c9fe Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..219811b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..e651610 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..049a649 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..a41daa3 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..8d11e2e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..4fdd643 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..eb4a126 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..1d63761 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..c9f7d3b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..c54fc4c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..561baa8 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..2a226be Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..76a155a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..61cabc1 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..d1b81c8 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..8a93396 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..838575d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..090d27b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..343322f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..c24c50a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..d0fd54a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..64a4d32 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..0ff0347 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..4618820 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..9a17855 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..974733c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..10c0b89 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..a13ac6e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..71bb349 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..bfb3602 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..56f523e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..ae0c98a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..c3f1e44 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..12471d6 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..b5d2d25 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..61ff6ec Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..1e71eeb Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..ac4fa9e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..773441b Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..cf76b7d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..769ecd3 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..f1f9082 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..4197edc Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..1aabde5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..4998013 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..f0dcc61 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..ead32a2 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..39901e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..d9d3024 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..66fb833 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..05e0b08 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..00a1334 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..6d972c4 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..a329998 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..972d432 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..4e3d914 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..1f846dc Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..45e67cd Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..79d10e5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..4e3d914 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..1f846dc Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..5541b8a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..9e5346f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..66fb833 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..05e0b08 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..4e929fb Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..6eeca8e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..68b4ff0 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..28682cf Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..68b4ff0 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..28682cf Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Havelock/gtk-3.0/gtk-dark.css new file mode 100644 index 0000000..5a316a3 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/gtk-3.0/gtk-dark.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5491d6; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #5491d6; + background-color: rgba(84, 145, 214, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5491d6; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #5491d6, inset -1px 0 #5491d6, inset 0 1px #5491d6, inset 0 -1px #5491d6; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5491d6; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5491d6; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #5491d6); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5491d6), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5491d6), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #5491d6; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5491d6), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #5491d6; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5491d6; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #5491d6; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #5491d6; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #5491d6; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #5491d6; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #5491d6; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5491d6; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #5491d6); } + GtkTreeView.view.progressbar:selected { + color: #5491d6; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #5491d6; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5491d6; + box-shadow: inset 1px 1px 0 1px #5491d6, inset -1px 0 0 1px #5491d6, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5491d6; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5491d6; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #5491d6; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #5491d6; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5491d6); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5491d6); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5491d6); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5491d6; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5491d6; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #5491d6; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5491d6; + background-color: #5491d6; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5491d6; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #5491d6; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5491d6; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #5491d6; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #5491d6; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #5491d6; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #5491d6; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(84, 145, 214, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #5491d6; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5491d6; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5491d6; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #5491d6; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #5491d6; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5491d6; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5491d6; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #5491d6; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #5491d6; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #5491d6; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5491d6; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5491d6; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5491d6; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #5491d6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5491d6; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5491d6; + border: solid #5491d6; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5491d6; + border: solid #5491d6; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5491d6; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5491d6; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #5491d6); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5491d6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #5491d6; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #5491d6; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #5491d6; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Havelock/gtk-3.0/gtk.css new file mode 100644 index 0000000..743ca3b --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/gtk-3.0/gtk.css @@ -0,0 +1,3777 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #3077c7; + -GtkWidget-visited-link-color: #265e9e; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5491d6; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #3077c7; + background-color: rgba(48, 119, 199, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5491d6; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #5491d6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5491d6; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5491d6; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #5491d6); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5491d6), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5491d6), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(84, 145, 214, 0.75); + background-color: rgba(84, 145, 214, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #5491d6; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5491d6), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(84, 145, 214, 0.75); + background-color: rgba(84, 145, 214, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #5491d6; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #5491d6; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #5491d6; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #5491d6; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #5491d6; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #5491d6; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #3077c7; } + *:link:visited, .button:visited { + color: #265e9e; } + *:selected *:link:visited, *:selected .button:visited { + color: #bbd3ef; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #5491d6; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #eef4fb; } + *:link:active, .button:active:link, .button:active:visited { + color: #3077c7; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dde9f7; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dde9f7; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #5491d6; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5491d6; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #5491d6; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #5491d6; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(222, 214, 214, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #5491d6; + border-color: #4486d2; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #5491d6; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #5491d6; + outline-color: rgba(84, 145, 214, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(84, 145, 214, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #5491d6; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #5491d6; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5491d6; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(84, 145, 214, 0.65); + background-color: rgba(84, 145, 214, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #aac8eb; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #98bde6; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #4f6e90; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #ccdef3; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #5491d6); } + GtkTreeView.view.progressbar:selected { + color: #5491d6; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #5491d6; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5491d6; + box-shadow: inset 1px 1px 0 1px #5491d6, inset -1px 0 0 1px #5491d6, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5491d6; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5491d6; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #5491d6; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #5491d6; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5491d6); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #3077c7); + border-color: #3077c7; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eff9); + border-color: #e5eff9; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #aac8eb); + border-color: #aac8eb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b2ceed); + border-color: #b2ceed; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5491d6); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(84, 145, 214, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5491d6); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b2ceed); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5491d6; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5491d6; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #5491d6; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5491d6; + background-color: #5491d6; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #4c83c1; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(84, 145, 214, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(84, 145, 214, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5491d6; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #5491d6; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5491d6; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #5491d6; + outline-color: rgba(84, 145, 214, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(84, 145, 214, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(84, 145, 214, 0.2)), to(rgba(84, 145, 214, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(84, 145, 214, 0.2)), to(rgba(84, 145, 214, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(84, 145, 214, 0.2)), to(rgba(84, 145, 214, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(84, 145, 214, 0.2)), to(rgba(84, 145, 214, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #5491d6; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #5491d6; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #5491d6; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dde9f7; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(84, 145, 214, 0.8); + border-color: rgba(48, 119, 199, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #3077c7; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5491d6; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5491d6; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5491d6; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a6c6ea; } + +.documents-entry-tag { + background-color: #5491d6; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #649cda; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #4486d2; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #5491d6; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5491d6; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5491d6; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #5491d6; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #5491d6; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #5491d6; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5491d6; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5491d6; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #5491d6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5491d6; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5491d6; + border: solid #5491d6; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5491d6; + border: solid #5491d6; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5491d6; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #5491d6); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5491d6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #5491d6; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #5491d6; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #5491d6; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Havelock/gtk-3.0/thumbnail.png b/themes/Mint-Y-Darker-Havelock/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Darker-Havelock/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Darker-Havelock/index.theme b/themes/Mint-Y-Darker-Havelock/index.theme new file mode 100644 index 0000000..7dd3424 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Darker-Havelock +Comment=A flat theme with transparent elements and dark menu and titlebars +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Darker-Havelock +MetacityTheme=Mint-Y-Darker-Havelock +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Darker-Havelock/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Darker-Havelock/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/close-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/close-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/close-prelight.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/close-pressed.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/hide-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/left-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/left-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/menu-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/right-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/right-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/shade-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/stick-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/themerc b/themes/Mint-Y-Darker-Havelock/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-1-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-2-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-3-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-4-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-5-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/top-left-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/top-right-active.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Havelock/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Darker-Havelock/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Darker-Havelock/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/apps.rc b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..b4b8455 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..7d55a2e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..d752b71 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..bc1e57c Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..fa4c9ac Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..aeebdfb Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..6cc5a37 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..67193d4 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..cf64b81 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..f20cb34 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..d478312 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..775c0fb Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..2a72ea1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/minus.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..1399448 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/null.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/plus.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..1b8bcad Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..4f21456 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..1052415 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..5fc9e0b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..701cca4 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..5bffc03 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..a1d2cf6 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..e7efc8f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..8d70513 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..5b8f763 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/gtkrc b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/gtkrc new file mode 100644 index 0000000..eaa265b --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfbfb\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/main.rc b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*<GtkMenu>*" style "menu" +widget_class "*<GtkMenuItem>*" style "menu_item" +widget_class "*<GtkCheckButton>*" style "checkbutton" +widget_class "*<GtkComboBox>" style "combobox" +widget_class "*<GtkComboBox>*<GtkButton>" style "combobox_button" +widget_class "*<GtkComboBox>*<GtkSeparator>" style "combobox_separator" +widget_class "*<GtkTreeView>*<GtkButton>*" style "treeview_header" +widget_class "*<GtkFileChooserDefault>*<GtkToolbar>" style "inline_toolbar" +widget_class "*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" +widget_class "*<GtkComboBoxEntry>*<GtkButton>" style "combobox_entry_button" +widget_class "*<GtkNotebook>*<GtkScrolledWindow>*<GtkViewport>" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "*<GtkNotebook>*<GtkEntry>" style "notebook_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkEntry>" style "entry" + +widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*<GtkEntry>" style "notebook_combobox_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*<GtkNotebook>.<GtkLabel>" style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "*<GtkNotebook>*<GtkEventBox>" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "*<GimpToolbox>*<GtkFrame>" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "*<GtkCustomMenu>*<GtkCustomMenuItem>*" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "<GtkEntry>" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*<GtkLabel>" style "text" +widget_class "*<GtkComboBox>*<GtkCellLayout>" style "text" +widget_class "*<GtkNotebook>*<GtkLabel>" style "text" +widget_class "*<GtkNotebook>*<GtkCellLayout>" style "text" diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>" style "toolbar_button" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkWidget>" style "toolbar_text" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>*<GtkLabel>" style "menubar-text" + diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" +widget_class "*CajaNavigationWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*CajaNavigationWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*CajaNavigationWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/panel.rc b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*<XfceArrowButton>" style "panelbuttons" +widget_class "*<XfceActionsPlugin>*" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel*<GtkMenuBar>*" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..089c145 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..19c6ef1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..2f03f96 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..ad00c49 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..efbc75d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..fb9e759 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..4827943 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..8e5c2a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..8f6daf5 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..29b4e0a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..c43f9c3 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..5eb7caa Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..dd6e3b1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..40c3278 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..7d55a2e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..856c246 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..1c93dc6 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..4f12140 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..335e71a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..d919b9c Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..15a420b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..da1c01e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..77a5e28 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..a3469d9 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..154b982 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..70fd58e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..7c6a76d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..eba25b5 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..0cbccc4 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..5a0f68f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..51afedd Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..75d572a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..21f7c8f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..dd186c2 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..3bf5ba0 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..f853bb9 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..cad4427 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..2ecf36a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..5fc9e0b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..b168f14 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..0790193 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..67f3760 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..3e5cc54 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..5da58e6 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..a7a7d44 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..633c736 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..22b0dc1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..3552aad Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..325b022 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..a844dff Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..965f41a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..1f2c400 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..e9c86f7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..d4b1dde Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..ccd93aa Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..f958a30 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..2deb8d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..ec39508 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..6c2971b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..6bee127 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..3437f33 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..6d218dc Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..75def4b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..e7d01eb Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..a98387d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..9ccfe68 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..75def4b Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..e7d01eb Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..ce85be2 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..ce6e0ba Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..2deb8d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..ec39508 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..6c1c870 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..1d4f397 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..0046f77 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..48fc0f7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..0046f77 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..48fc0f7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/gtk-dark.css new file mode 100644 index 0000000..6b49fda --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/gtk-dark.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #851042; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #851042; + background-color: rgba(133, 16, 66, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #851042; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #851042, inset -1px 0 #851042, inset 0 1px #851042, inset 0 -1px #851042; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #851042; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #851042; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #851042); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#851042), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#851042), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #851042; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#851042), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #851042; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #851042; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #851042; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #851042; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #851042; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #851042; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #851042; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #851042; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #851042); } + GtkTreeView.view.progressbar:selected { + color: #851042; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #851042; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #851042; + box-shadow: inset 1px 1px 0 1px #851042, inset -1px 0 0 1px #851042, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #851042; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #851042; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #851042; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #851042; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #851042); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #851042); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #851042); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #851042; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #851042; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #851042; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #851042; + background-color: #851042; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #851042; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #851042; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #851042; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #851042; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #851042; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #851042; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #851042; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(133, 16, 66, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #851042; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #851042; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #851042; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #851042; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #851042; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #851042; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #851042; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #851042; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #851042; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #851042; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #851042; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #851042; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #851042; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #851042; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #851042; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #851042; + border: solid #851042; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #851042; + border: solid #851042; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #851042; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #851042; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #851042); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #851042; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #851042; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #851042; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #851042; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/gtk.css new file mode 100644 index 0000000..83d7bbd --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/gtk.css @@ -0,0 +1,3777 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #570b2b; + -GtkWidget-visited-link-color: #2a0515; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #851042; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #570b2b; + background-color: rgba(87, 11, 43, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #851042; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #851042; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #851042; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #851042; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #851042); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#851042), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#851042), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(133, 16, 66, 0.75); + background-color: rgba(133, 16, 66, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #851042; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#851042), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(133, 16, 66, 0.75); + background-color: rgba(133, 16, 66, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #851042; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #851042; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #851042; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #851042; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #851042; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #851042; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #570b2b; } + *:link:visited, .button:visited { + color: #2a0515; } + *:selected *:link:visited, *:selected .button:visited { + color: #ce9fb3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #851042; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f3e7ec; } + *:link:active, .button:active:link, .button:active:visited { + color: #570b2b; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e7cfd9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e7cfd9; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #851042; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #851042; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #851042; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #851042; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(222, 214, 214, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #851042; + border-color: #730e39; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #851042; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #851042; + outline-color: rgba(133, 16, 66, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(133, 16, 66, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #851042; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #851042; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #851042; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(133, 16, 66, 0.65); + background-color: rgba(133, 16, 66, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c288a1; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #b6708e; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #682d46; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #dab7c6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #851042); } + GtkTreeView.view.progressbar:selected { + color: #851042; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #851042; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #851042; + box-shadow: inset 1px 1px 0 1px #851042, inset -1px 0 0 1px #851042, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #851042; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #851042; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #851042; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #851042; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #851042); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #570b2b); + border-color: #570b2b; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eddbe3); + border-color: #eddbe3; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c288a1); + border-color: #c288a1; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #c893aa); + border-color: #c893aa; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #851042); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(133, 16, 66, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #851042); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #c893aa); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #851042; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #851042; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #851042; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #851042; + background-color: #851042; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #780e3b; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(133, 16, 66, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(133, 16, 66, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #851042; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #851042; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #851042; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #851042; + outline-color: rgba(133, 16, 66, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(133, 16, 66, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(133, 16, 66, 0.2)), to(rgba(133, 16, 66, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(133, 16, 66, 0.2)), to(rgba(133, 16, 66, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(133, 16, 66, 0.2)), to(rgba(133, 16, 66, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(133, 16, 66, 0.2)), to(rgba(133, 16, 66, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #851042; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #851042; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #851042; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e7cfd9; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(133, 16, 66, 0.8); + border-color: rgba(87, 11, 43, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #570b2b; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #851042; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #851042; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #851042; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #e01b6f; } + +.documents-entry-tag { + background-color: #851042; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #97124b; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #730e39; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #851042; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #851042; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #851042; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #851042; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #851042; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #851042; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #851042; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #851042; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #851042; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #851042; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #851042; + border: solid #851042; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #851042; + border: solid #851042; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #851042; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #851042); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #851042; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #851042; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #851042; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #851042; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/thumbnail.png b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Darker-Hibiscus/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Darker-Hibiscus/index.theme b/themes/Mint-Y-Darker-Hibiscus/index.theme new file mode 100644 index 0000000..a30a6bf --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Darker-Hibiscus +Comment=A flat theme with transparent elements and dark menu and titlebars +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Darker-Hibiscus +MetacityTheme=Mint-Y-Darker-Hibiscus +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Darker-Hibiscus/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Darker-Hibiscus/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-prelight.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-pressed.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/left-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/left-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/right-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/right-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/themerc b/themes/Mint-Y-Darker-Hibiscus/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-1-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-2-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-3-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-4-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-5-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-left-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-right-active.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Darker-Hibiscus/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Lightning/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Lightning/gtk-3.0/gtk-dark.css index 9e536e7..9940467 100644 --- a/themes/Mint-Y-Darker-Lightning/gtk-3.0/gtk-dark.css +++ b/themes/Mint-Y-Darker-Lightning/gtk-3.0/gtk-dark.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid #FFA726; + background-color: rgba(255, 167, 38, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } diff --git a/themes/Mint-Y-Darker-Lightning/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Lightning/gtk-3.0/gtk.css index 8426c37..b3d8a2b 100644 --- a/themes/Mint-Y-Darker-Lightning/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Darker-Lightning/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #ffa31e; - background-color: rgba(255, 163, 30, 0.2); } + border: 1px solid #FFA726; + background-color: rgba(255, 167, 38, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/apps.rc b/themes/Mint-Y-Darker-Majestic/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..66b2b48 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..abb54e5 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..d6e3eae Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..9ed417a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..93ece7a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..8f915d9 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..14ba68f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..1edc125 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..a228bd3 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..df99b26 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..5fc5ebe Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..ec6a86e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..21d23d9 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/minus.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..35ee23f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/null.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/plus.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..f4003e8 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..d42fbbc Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..7d87855 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..99b9ccd Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..9bf87e8 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..8974fd8 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..5b0a50a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..2c19270 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..b09c7a2 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..7bb6d15 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/gtkrc b/themes/Mint-Y-Darker-Majestic/gtk-2.0/gtkrc new file mode 100644 index 0000000..eaa265b --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfbfb\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/main.rc b/themes/Mint-Y-Darker-Majestic/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*<GtkMenu>*" style "menu" +widget_class "*<GtkMenuItem>*" style "menu_item" +widget_class "*<GtkCheckButton>*" style "checkbutton" +widget_class "*<GtkComboBox>" style "combobox" +widget_class "*<GtkComboBox>*<GtkButton>" style "combobox_button" +widget_class "*<GtkComboBox>*<GtkSeparator>" style "combobox_separator" +widget_class "*<GtkTreeView>*<GtkButton>*" style "treeview_header" +widget_class "*<GtkFileChooserDefault>*<GtkToolbar>" style "inline_toolbar" +widget_class "*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" +widget_class "*<GtkComboBoxEntry>*<GtkButton>" style "combobox_entry_button" +widget_class "*<GtkNotebook>*<GtkScrolledWindow>*<GtkViewport>" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "*<GtkNotebook>*<GtkEntry>" style "notebook_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkEntry>" style "entry" + +widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*<GtkEntry>" style "notebook_combobox_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*<GtkNotebook>.<GtkLabel>" style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "*<GtkNotebook>*<GtkEventBox>" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "*<GimpToolbox>*<GtkFrame>" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "*<GtkCustomMenu>*<GtkCustomMenuItem>*" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "<GtkEntry>" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*<GtkLabel>" style "text" +widget_class "*<GtkComboBox>*<GtkCellLayout>" style "text" +widget_class "*<GtkNotebook>*<GtkLabel>" style "text" +widget_class "*<GtkNotebook>*<GtkCellLayout>" style "text" diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>" style "toolbar_button" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkWidget>" style "toolbar_text" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>*<GtkLabel>" style "menubar-text" + diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" +widget_class "*CajaNavigationWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*CajaNavigationWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*CajaNavigationWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-2.0/panel.rc b/themes/Mint-Y-Darker-Majestic/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*<XfceArrowButton>" style "panelbuttons" +widget_class "*<XfceActionsPlugin>*" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel*<GtkMenuBar>*" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..4f834a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..393078b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..f45e683 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..161508e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..efe63d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..387177d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..5cf7249 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..291c118 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..b5f2d99 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..204aa4f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..c41c5f2 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..32272b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..5ab4e40 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..32ace40 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..abb54e5 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..f23f253 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..5751894 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..64daf18 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..244148b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..9820b66 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..c37753a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..fbe2f85 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..b882262 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..08e100c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..7855f07 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..5b4c20d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..f5231aa Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..5dca039 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..43180e5 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..3bfc96e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..e0ef4ba Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..79fe504 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..729da6e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..0501e5e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..2ec2874 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..9b831ca Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..d955644 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..31a144b Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..99b9ccd Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..caf88bb Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..b12fa01 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..4bf25f2 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..f569767 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..84ba228 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..8c3fd92 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..35a0737 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..129edab Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..2c47b36 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..bb88f1d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..70e0153 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..03f2400 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..4085ebc Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..47e8bb0 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..f84fdff Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..d71a094 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..8df9ed7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..0af4c4a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..625343c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..beae9a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..d6cd757 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..e680791 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..b5eef14 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..d95bfed Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..2a22860 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..b2fc09a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..5daa448 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..d95bfed Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..2a22860 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..96b4711 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..84fe73d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..0af4c4a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..625343c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..5bfff6f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..6cf7765 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..b467794 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..8c1695c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..b467794 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..8c1695c Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Majestic/gtk-3.0/gtk-dark.css new file mode 100644 index 0000000..e2ab4f6 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/gtk-3.0/gtk-dark.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5f5f5f; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #5f5f5f; + background-color: rgba(95, 95, 95, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5f5f5f; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #5f5f5f, inset -1px 0 #5f5f5f, inset 0 1px #5f5f5f, inset 0 -1px #5f5f5f; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5f5f5f; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5f5f5f; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #5f5f5f); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5f5f5f), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5f5f5f), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #5f5f5f; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5f5f5f), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #5f5f5f; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5f5f5f; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #5f5f5f; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #5f5f5f; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #5f5f5f; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #5f5f5f; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #5f5f5f; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5f5f5f; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #5f5f5f); } + GtkTreeView.view.progressbar:selected { + color: #5f5f5f; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #5f5f5f; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5f5f5f; + box-shadow: inset 1px 1px 0 1px #5f5f5f, inset -1px 0 0 1px #5f5f5f, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5f5f5f; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5f5f5f; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #5f5f5f; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #5f5f5f; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5f5f5f); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5f5f5f); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5f5f5f); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5f5f5f; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5f5f5f; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #5f5f5f; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5f5f5f; + background-color: #5f5f5f; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #5f5f5f; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5f5f5f; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #5f5f5f; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #5f5f5f; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #5f5f5f; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #5f5f5f; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(95, 95, 95, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #5f5f5f; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5f5f5f; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #5f5f5f; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5f5f5f; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5f5f5f; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #5f5f5f; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #5f5f5f; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #5f5f5f; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5f5f5f; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5f5f5f; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #5f5f5f; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5f5f5f; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5f5f5f; + border: solid #5f5f5f; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5f5f5f; + border: solid #5f5f5f; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5f5f5f; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #5f5f5f; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #5f5f5f); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #5f5f5f; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #5f5f5f; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #5f5f5f; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Majestic/gtk-3.0/gtk.css new file mode 100644 index 0000000..229972b --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/gtk-3.0/gtk.css @@ -0,0 +1,3777 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #464646; + -GtkWidget-visited-link-color: #2c2c2c; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5f5f5f; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #464646; + background-color: rgba(70, 70, 70, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5f5f5f; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #5f5f5f; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5f5f5f; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5f5f5f; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #5f5f5f); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5f5f5f), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5f5f5f), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(95, 95, 95, 0.75); + background-color: rgba(95, 95, 95, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #5f5f5f; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5f5f5f), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(95, 95, 95, 0.75); + background-color: rgba(95, 95, 95, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #5f5f5f; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #5f5f5f; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #5f5f5f; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #5f5f5f; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #5f5f5f; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #5f5f5f; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #464646; } + *:link:visited, .button:visited { + color: #2c2c2c; } + *:selected *:link:visited, *:selected .button:visited { + color: #bfbfbf; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #5f5f5f; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #efefef; } + *:link:active, .button:active:link, .button:active:visited { + color: #464646; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dfdfdf; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dfdfdf; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #5f5f5f; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5f5f5f; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #5f5f5f; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #5f5f5f; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(222, 214, 214, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #5f5f5f; + border-color: #555555; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #5f5f5f; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #5f5f5f; + outline-color: rgba(95, 95, 95, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(95, 95, 95, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #5f5f5f; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #5f5f5f; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5f5f5f; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(95, 95, 95, 0.65); + background-color: rgba(95, 95, 95, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #afafaf; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #9f9f9f; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #555555; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #cfcfcf; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #5f5f5f); } + GtkTreeView.view.progressbar:selected { + color: #5f5f5f; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #5f5f5f; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5f5f5f; + box-shadow: inset 1px 1px 0 1px #5f5f5f, inset -1px 0 0 1px #5f5f5f, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5f5f5f; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5f5f5f; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #5f5f5f; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #5f5f5f; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5f5f5f); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #464646); + border-color: #464646; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #e7e7e7); + border-color: #e7e7e7; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #afafaf); + border-color: #afafaf; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b7b7b7); + border-color: #b7b7b7; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5f5f5f); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(95, 95, 95, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5f5f5f); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b7b7b7); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5f5f5f; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5f5f5f; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #5f5f5f; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5f5f5f; + background-color: #5f5f5f; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #565656; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(95, 95, 95, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(95, 95, 95, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #5f5f5f; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5f5f5f; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #5f5f5f; + outline-color: rgba(95, 95, 95, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(95, 95, 95, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(95, 95, 95, 0.2)), to(rgba(95, 95, 95, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(95, 95, 95, 0.2)), to(rgba(95, 95, 95, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(95, 95, 95, 0.2)), to(rgba(95, 95, 95, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(95, 95, 95, 0.2)), to(rgba(95, 95, 95, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #5f5f5f; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #5f5f5f; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #5f5f5f; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dfdfdf; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(95, 95, 95, 0.8); + border-color: rgba(70, 70, 70, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #464646; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #5f5f5f; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5f5f5f; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #929292; } + +.documents-entry-tag { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: dimgray; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #555555; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #5f5f5f; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5f5f5f; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5f5f5f; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #5f5f5f; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #5f5f5f; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #5f5f5f; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5f5f5f; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5f5f5f; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5f5f5f; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5f5f5f; + border: solid #5f5f5f; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5f5f5f; + border: solid #5f5f5f; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5f5f5f; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #5f5f5f); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #5f5f5f; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #5f5f5f; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #5f5f5f; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Majestic/gtk-3.0/thumbnail.png b/themes/Mint-Y-Darker-Majestic/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Darker-Majestic/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Darker-Majestic/index.theme b/themes/Mint-Y-Darker-Majestic/index.theme new file mode 100644 index 0000000..ed8b7ab --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Darker-Majestic +Comment=A flat theme with transparent elements and dark menu and titlebars +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Darker-Majestic +MetacityTheme=Mint-Y-Darker-Majestic +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Darker-Majestic/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Darker-Majestic/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/close-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/close-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/close-prelight.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/close-pressed.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/hide-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/left-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/left-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/menu-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/right-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/right-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/shade-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/stick-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/themerc b/themes/Mint-Y-Darker-Majestic/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-1-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-2-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-3-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-4-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-5-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/top-left-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/top-right-active.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Majestic/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Darker-Majestic/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Darker-Majestic/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/apps.rc b/themes/Mint-Y-Darker-Moka/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..601821e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..87d4508 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..0acd082 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..dcf1678 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..e2c38f4 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..f8dae93 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..d20b543 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..2c091c9 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..bb3dda2 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..a65ef96 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..f2e72b0 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..b04caf3 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..d3d7aec Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/minus.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..c2c63a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/null.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/plus.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..3b6a315 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..4bf8de4 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..61f850b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..594ea7d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..f44a5fc Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..8c7b8f1 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..195890c Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..a21b55c Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..2275727 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..3da2ccc Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/gtkrc b/themes/Mint-Y-Darker-Moka/gtk-2.0/gtkrc new file mode 100644 index 0000000..eaa265b --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfbfb\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/main.rc b/themes/Mint-Y-Darker-Moka/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*<GtkMenu>*" style "menu" +widget_class "*<GtkMenuItem>*" style "menu_item" +widget_class "*<GtkCheckButton>*" style "checkbutton" +widget_class "*<GtkComboBox>" style "combobox" +widget_class "*<GtkComboBox>*<GtkButton>" style "combobox_button" +widget_class "*<GtkComboBox>*<GtkSeparator>" style "combobox_separator" +widget_class "*<GtkTreeView>*<GtkButton>*" style "treeview_header" +widget_class "*<GtkFileChooserDefault>*<GtkToolbar>" style "inline_toolbar" +widget_class "*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" +widget_class "*<GtkComboBoxEntry>*<GtkButton>" style "combobox_entry_button" +widget_class "*<GtkNotebook>*<GtkScrolledWindow>*<GtkViewport>" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "*<GtkNotebook>*<GtkEntry>" style "notebook_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkEntry>" style "entry" + +widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*<GtkEntry>" style "notebook_combobox_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*<GtkNotebook>.<GtkLabel>" style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "*<GtkNotebook>*<GtkEventBox>" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "*<GimpToolbox>*<GtkFrame>" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "*<GtkCustomMenu>*<GtkCustomMenuItem>*" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "<GtkEntry>" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*<GtkLabel>" style "text" +widget_class "*<GtkComboBox>*<GtkCellLayout>" style "text" +widget_class "*<GtkNotebook>*<GtkLabel>" style "text" +widget_class "*<GtkNotebook>*<GtkCellLayout>" style "text" diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>" style "toolbar_button" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkWidget>" style "toolbar_text" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>*<GtkLabel>" style "menubar-text" + diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" +widget_class "*CajaNavigationWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*CajaNavigationWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*CajaNavigationWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-2.0/panel.rc b/themes/Mint-Y-Darker-Moka/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*<XfceArrowButton>" style "panelbuttons" +widget_class "*<XfceActionsPlugin>*" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel*<GtkMenuBar>*" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..f8c791e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..6905658 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..1c5fade Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..1b57c5f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..ad08972 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..d2f4f46 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..7b9d14e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..2388368 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..28eb4f8 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..c077b91 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..6376575 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..b530444 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..a8b2196 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..aebdc87 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..87d4508 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..542d6bd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..e1b4e53 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..fd18b62 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..bf5bc2c Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..2ee1876 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..7d1b7c1 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..6774ef7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..fd37c5d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..32cba5a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..0880fb5 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..458fac3 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..cda3817 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..c09e6af Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..89603a4 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..3bce158 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..ac63c8f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..ad15855 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..2cf56f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..0d9f2ae Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..99c0a35 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..515cfa8 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..9a569dd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..1a56c33 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..594ea7d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..7257257 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..c3f4c3b Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..57b3b64 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..0fb1ba2 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..afd068e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..08c13f0 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..0272809 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..dbe5505 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..31391c2 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..94c467a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..902acdc Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..f7d8cd4 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..e329a8d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..f49ee4e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..c989a83 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..12aa37a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..c1fb0dd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..6cf7efd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..8b7043d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..1680cdd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..c7ded8c Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..d6ebdef Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..ee83523 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..a7e27df Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..efa97f8 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..e46cfd5 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..3a286bb Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..a7e27df Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..efa97f8 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..7492a0d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..dcbc0b0 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..6cf7efd Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..8b7043d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..5028dbc Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..f092f68 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..b6bb341 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..4b1271a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..b6bb341 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..4b1271a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Moka/gtk-3.0/gtk-dark.css new file mode 100644 index 0000000..3bcf811 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/gtk-3.0/gtk-dark.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #e1d5e5; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #e1d5e5; + background-color: rgba(225, 213, 229, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #e1d5e5; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #e1d5e5, inset -1px 0 #e1d5e5, inset 0 1px #e1d5e5, inset 0 -1px #e1d5e5; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #e1d5e5; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #e1d5e5; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #e1d5e5); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#e1d5e5), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e1d5e5), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #e1d5e5; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e1d5e5), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #e1d5e5; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #e1d5e5; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #e1d5e5; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #e1d5e5; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #e1d5e5; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #e1d5e5; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #e1d5e5; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #e1d5e5; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #e1d5e5); } + GtkTreeView.view.progressbar:selected { + color: #e1d5e5; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #e1d5e5; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #e1d5e5; + box-shadow: inset 1px 1px 0 1px #e1d5e5, inset -1px 0 0 1px #e1d5e5, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #e1d5e5; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #e1d5e5; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #e1d5e5; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #e1d5e5; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #e1d5e5); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #e1d5e5); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #e1d5e5); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #e1d5e5; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #e1d5e5; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #e1d5e5; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #e1d5e5; + background-color: #e1d5e5; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #e1d5e5; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #e1d5e5; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #e1d5e5; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #e1d5e5; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #e1d5e5; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #e1d5e5; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(225, 213, 229, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #e1d5e5; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #e1d5e5; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #e1d5e5; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #e1d5e5; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #e1d5e5; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #e1d5e5; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #e1d5e5; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #e1d5e5; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #e1d5e5; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #e1d5e5; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #e1d5e5; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #e1d5e5; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #e1d5e5; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #e1d5e5; + border: solid #e1d5e5; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #e1d5e5; + border: solid #e1d5e5; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #e1d5e5; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #e1d5e5; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #e1d5e5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #e1d5e5; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #e1d5e5; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #e1d5e5; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #e1d5e5; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Moka/gtk-3.0/gtk.css new file mode 100644 index 0000000..e4d68d0 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/gtk-3.0/gtk.css @@ -0,0 +1,3777 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #cbb6d2; + -GtkWidget-visited-link-color: #b496be; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #e1d5e5; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #cbb6d2; + background-color: rgba(203, 182, 210, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #e1d5e5; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #e1d5e5; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #e1d5e5; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #e1d5e5; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #e1d5e5); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#e1d5e5), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e1d5e5), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(225, 213, 229, 0.75); + background-color: rgba(225, 213, 229, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #e1d5e5; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e1d5e5), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(225, 213, 229, 0.75); + background-color: rgba(225, 213, 229, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #e1d5e5; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #e1d5e5; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #e1d5e5; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #e1d5e5; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #e1d5e5; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #e1d5e5; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #cbb6d2; } + *:link:visited, .button:visited { + color: #b496be; } + *:selected *:link:visited, *:selected .button:visited { + color: #f3eef5; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #e1d5e5; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #fcfbfc; } + *:link:active, .button:active:link, .button:active:visited { + color: #cbb6d2; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #f9f7fa; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #f9f7fa; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #e1d5e5; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #e1d5e5; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #e1d5e5; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #e1d5e5; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(222, 214, 214, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #e1d5e5; + border-color: #d8c8dd; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #e1d5e5; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #e1d5e5; + outline-color: rgba(225, 213, 229, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(225, 213, 229, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #e1d5e5; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #e1d5e5; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #e1d5e5; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(225, 213, 229, 0.65); + background-color: rgba(225, 213, 229, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #f0eaf2; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #ede6ef; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #969098; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #f6f2f7; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #e1d5e5); } + GtkTreeView.view.progressbar:selected { + color: #e1d5e5; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #e1d5e5; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #e1d5e5; + box-shadow: inset 1px 1px 0 1px #e1d5e5, inset -1px 0 0 1px #e1d5e5, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #e1d5e5; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #e1d5e5; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #e1d5e5; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #e1d5e5; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #e1d5e5); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #cbb6d2); + border-color: #cbb6d2; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #fbf9fb); + border-color: #fbf9fb; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #f0eaf2); + border-color: #f0eaf2; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f2ecf3); + border-color: #f2ecf3; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #e1d5e5); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(225, 213, 229, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #e1d5e5); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #f2ecf3); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #e1d5e5; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #e1d5e5; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #e1d5e5; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #e1d5e5; + background-color: #e1d5e5; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #cbc0ce; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(225, 213, 229, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(225, 213, 229, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #e1d5e5; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #e1d5e5; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #e1d5e5; + outline-color: rgba(225, 213, 229, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(225, 213, 229, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(225, 213, 229, 0.2)), to(rgba(225, 213, 229, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(225, 213, 229, 0.2)), to(rgba(225, 213, 229, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(225, 213, 229, 0.2)), to(rgba(225, 213, 229, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(225, 213, 229, 0.2)), to(rgba(225, 213, 229, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #e1d5e5; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #e1d5e5; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #e1d5e5; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #f9f7fa; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(225, 213, 229, 0.8); + border-color: rgba(203, 182, 210, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #cbb6d2; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #e1d5e5; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #e1d5e5; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: white; } + +.documents-entry-tag { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #eae2ed; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #d8c8dd; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #e1d5e5; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #e1d5e5; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #e1d5e5; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #e1d5e5; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #e1d5e5; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #e1d5e5; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #e1d5e5; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #e1d5e5; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #e1d5e5; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #e1d5e5; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #e1d5e5; + border: solid #e1d5e5; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #e1d5e5; + border: solid #e1d5e5; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #e1d5e5; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #e1d5e5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #e1d5e5; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #e1d5e5; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #e1d5e5; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #e1d5e5; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Moka/gtk-3.0/thumbnail.png b/themes/Mint-Y-Darker-Moka/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Darker-Moka/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Darker-Moka/index.theme b/themes/Mint-Y-Darker-Moka/index.theme new file mode 100644 index 0000000..30ea862 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Darker-Moka +Comment=A flat theme with transparent elements and dark menu and titlebars +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Darker-Moka +MetacityTheme=Mint-Y-Darker-Moka +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Darker-Moka/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Darker-Moka/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/bottom-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/close-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/close-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/close-prelight.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/close-pressed.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/hide-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/left-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/left-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/maximize-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/menu-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/right-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/right-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/shade-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/stick-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/themerc b/themes/Mint-Y-Darker-Moka/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-1-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-2-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-3-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-4-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-5-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/top-left-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/top-right-active.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Moka/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Darker-Moka/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Darker-Moka/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Polo/gtk-3.0/gtk-dark.css index c8d05e3..3b1235f 100644 --- a/themes/Mint-Y-Darker-Polo/gtk-3.0/gtk-dark.css +++ b/themes/Mint-Y-Darker-Polo/gtk-3.0/gtk-dark.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #76905b; - background-color: rgba(118, 144, 91, 0.2); } + border: 1px solid #688BC6; + background-color: rgba(104, 139, 198, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #DADADA; } diff --git a/themes/Mint-Y-Darker-Polo/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Polo/gtk-3.0/gtk.css index af6270e..6fcf26f 100644 --- a/themes/Mint-Y-Darker-Polo/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Darker-Polo/gtk-3.0/gtk.css @@ -12,8 +12,8 @@ -GtkTreeView-horizontal-separator: 4; -GtkMenu-horizontal-padding: 0; -GtkMenu-vertical-padding: 0; - -GtkWidget-link-color: #81a65b; - -GtkWidget-visited-link-color: #678648; + -GtkWidget-link-color: #456fb6; + -GtkWidget-visited-link-color: #375891; -GtkWidget-focus-padding: 2; -GtkWidget-focus-line-width: 1; -GtkWidget-text-handle-width: 20; @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #81a65b; - background-color: rgba(129, 166, 91, 0.2); } + border: 1px solid #688BC6; + background-color: rgba(104, 139, 198, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } @@ -258,8 +258,8 @@ GtkSearchEntry.entry { color: inherit; } .button:insensitive:active, .button:insensitive:checked { color: rgba(255, 255, 255, 0.8); - border-color: rgba(154, 184, 124, 0.75); - background-color: rgba(154, 184, 124, 0.75); + border-color: rgba(104, 139, 198, 0.75); + background-color: rgba(104, 139, 198, 0.75); opacity: 0.6; } .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { color: inherit; } @@ -480,8 +480,8 @@ GtkSearchEntry.entry { color: inherit; } .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { color: rgba(255, 255, 255, 0.8); - border-color: rgba(154, 184, 124, 0.75); - background-color: rgba(154, 184, 124, 0.75); + border-color: rgba(104, 139, 198, 0.75); + background-color: rgba(104, 139, 198, 0.75); opacity: 0.6; } .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { color: inherit; } @@ -700,21 +700,21 @@ NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > . color: #4a4a4a; } *:link, .button:link, .button:visited { - color: #81a65b; } + color: #456fb6; } *:link:visited, .button:visited { - color: #678648; } + color: #375891; } *:selected *:link:visited, *:selected .button:visited { - color: #d7e3cb; } + color: #c3d1e8; } *:link:hover, .button:hover:link, .button:hover:visited { - color: #688BC6; } + color: #688bc6; } *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #f5f8f2; } + color: #f0f3f9; } *:link:active, .button:active:link, .button:active:visited { - color: #81a65b; } + color: #456fb6; } *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #ebf1e5; } + color: #e1e8f4; } *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #ebf1e5; } + color: #e1e8f4; } .button:link > .label, .button:visited > .label { text-decoration-line: underline; } @@ -890,7 +890,7 @@ GtkComboBox { .header-bar.selection-mode, .header-bar.titlebar.selection-mode { color: #ffffff; background-color: #688BC6; - border-color: #90b16f; + border-color: #5980c0; box-shadow: none; } .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { background-color: #688BC6; @@ -913,7 +913,7 @@ GtkComboBox { border-color: rgba(255, 255, 255, 0.5); } .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { color: #688BC6; - outline-color: rgba(154, 184, 124, 0.3); + outline-color: rgba(104, 139, 198, 0.3); background-color: #ffffff; border-color: #ffffff; } .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { @@ -921,7 +921,7 @@ GtkComboBox { background-color: rgba(255, 255, 255, 0); border-color: rgba(255, 255, 255, 0); } .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(154, 184, 124, 0.4); + color: rgba(104, 139, 198, 0.4); background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.15); } .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { @@ -933,7 +933,7 @@ GtkComboBox { .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #688BC6; } + background-color: #688bc6; } .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { border-radius: 0; } .maximized .header-bar { @@ -1055,8 +1055,8 @@ GtkComboBox { color: inherit; } .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { color: rgba(255, 255, 255, 0.75); - border-color: rgba(154, 184, 124, 0.65); - background-color: rgba(154, 184, 124, 0.65); } + border-color: rgba(104, 139, 198, 0.65); + background-color: rgba(104, 139, 198, 0.65); } .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, @@ -1374,16 +1374,16 @@ GtkTreeView.view { border-top-color: rgba(0, 0, 0, 0.1); } GtkTreeView.view:selected { border-radius: 0; - border-left-color: #cddcbe; + border-left-color: #b4c5e3; border-top-color: rgba(74, 74, 74, 0.1); } GtkTreeView.view:insensitive { color: rgba(74, 74, 74, 0.55); } GtkTreeView.view:insensitive:selected { - color: #c2d4b0; } + color: #a4b9dd; } GtkTreeView.view.dnd { border-style: solid none; border-width: 1px; - border-color: #728163; } + border-color: #596b88; } GtkTreeView.view.expander { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); color: #a5a5a5; } @@ -1392,7 +1392,7 @@ GtkTreeView.view { GtkTreeView.view.expander:hover { color: #4a4a4a; } GtkTreeView.view.expander:selected { - color: #e1ead8; } + color: #d2dcee; } GtkTreeView.view.expander:selected:hover { color: #ffffff; } GtkTreeView.view.expander:checked { @@ -2007,20 +2007,20 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { .osd .scale.slider:hover { background-image: linear-gradient(to bottom, #688BC6); } .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #81a65b); - border-color: #81a65b; } + background-image: linear-gradient(to bottom, #456fb6); + border-color: #456fb6; } .list-row:selected .scale.slider, GtkInfoBar .scale.slider { background-image: linear-gradient(to bottom, #ffffff); border-color: #ffffff; } .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #f0f4eb); - border-color: #f0f4eb; } + background-image: linear-gradient(to bottom, #e8eef6); + border-color: #e8eef6; } .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #cddcbe); - border-color: #cddcbe; } + background-image: linear-gradient(to bottom, #b4c5e3); + border-color: #b4c5e3; } .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #d2dfc4); - border-color: #d2dfc4; } + background-image: linear-gradient(to bottom, #bbcbe5); + border-color: #bbcbe5; } .scale.trough { border: none; border-radius: 2.5px; @@ -2028,7 +2028,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { .scale.trough.highlight { background-image: linear-gradient(to bottom, #688BC6); } .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(154, 184, 124, 0.55)); } + background-image: linear-gradient(to bottom, rgba(104, 139, 198, 0.55)); } .scale.trough:insensitive { background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } .osd .scale.trough { @@ -2042,7 +2042,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { background-image: linear-gradient(to bottom, #ffffff); } .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #d2dfc4); } + background-image: linear-gradient(to bottom, #bbcbe5); } .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } @@ -2139,10 +2139,10 @@ GtkScrolledWindow GtkViewport.frame { .list-row.activatable:selected:active { color: #ffffff; } .list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { - background-color: #8ba670; } + background-color: #5e7db2; } .list-row.activatable:selected:insensitive { color: rgba(255, 255, 255, 0.7); - background-color: rgba(154, 184, 124, 0.7); } + background-color: rgba(104, 139, 198, 0.7); } .list-row.activatable:selected:insensitive .label { color: inherit; } @@ -2170,7 +2170,7 @@ GtkScrolledWindow GtkViewport.frame { .app-notification .button.flat, .app-notification .sidebar-button.button, .app-notification.frame .button.flat, .app-notification.frame .sidebar-button.button { - border-color: rgba(154, 184, 124, 0); } + border-color: rgba(104, 139, 198, 0); } .app-notification .button:hover, .app-notification.frame .button:hover { color: #C3C3C3; @@ -2374,7 +2374,7 @@ GtkInfoBar { border-color: rgba(255, 255, 255, 0.8); } .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { color: #688BC6; - outline-color: rgba(154, 184, 124, 0.3); + outline-color: rgba(104, 139, 198, 0.3); background-color: #ffffff; border-color: #ffffff; } .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { @@ -2382,7 +2382,7 @@ GtkInfoBar { background-color: rgba(255, 255, 255, 0); border-color: rgba(255, 255, 255, 0.2); } .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(154, 184, 124, 0.4); + color: rgba(104, 139, 198, 0.4); background-color: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.2); } @@ -2481,7 +2481,7 @@ GtkVolumeButton.button { font: Monospace; } .overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(154, 184, 124, 0.2)), to(rgba(154, 184, 124, 0))); + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(104, 139, 198, 0.2)), to(rgba(104, 139, 198, 0))); background-size: 100% 60%; background-repeat: no-repeat; background-position: center top; @@ -2489,7 +2489,7 @@ GtkVolumeButton.button { border: none; box-shadow: none; } .overshoot.bottom { - background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(154, 184, 124, 0.2)), to(rgba(154, 184, 124, 0))); + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(104, 139, 198, 0.2)), to(rgba(104, 139, 198, 0))); background-size: 100% 60%; background-repeat: no-repeat; background-position: center bottom; @@ -2497,7 +2497,7 @@ GtkVolumeButton.button { border: none; box-shadow: none; } .overshoot.left { - background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(154, 184, 124, 0.2)), to(rgba(154, 184, 124, 0))); + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(104, 139, 198, 0.2)), to(rgba(104, 139, 198, 0))); background-size: 60% 100%; background-repeat: no-repeat; background-position: left center; @@ -2505,7 +2505,7 @@ GtkVolumeButton.button { border: none; box-shadow: none; } .overshoot.right { - background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(154, 184, 124, 0.2)), to(rgba(154, 184, 124, 0))); + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(104, 139, 198, 0.2)), to(rgba(104, 139, 198, 0))); background-size: 60% 100%; background-repeat: no-repeat; background-position: right center; @@ -2752,7 +2752,7 @@ TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook . .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, .nautilus-list-dim-label:selected, .nautilus-list-dim-label:selected:focus { - color: #ebf1e5; } + color: #e1e8f4; } NautilusNotebook.notebook { background-color: #ffffff; } @@ -2780,8 +2780,8 @@ NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline- background-color: rgba(74, 74, 74, 0.5); border-color: rgba(49, 49, 49, 0.5); } .disk-space-display.used { - background-color: rgba(154, 184, 124, 0.8); - border-color: rgba(129, 166, 91, 0.8); } + background-color: rgba(104, 139, 198, 0.8); + border-color: rgba(69, 111, 182, 0.8); } .disk-space-display.free { background-color: #e8e8e8; border-color: #cfcfcf; } @@ -2791,7 +2791,7 @@ NautilusListView .view { NemoPlacesTreeView { -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; - -NemoPlacesTreeView-disk-full-fg-color: #81a65b; } + -NemoPlacesTreeView-disk-full-fg-color: #456fb6; } NemoWindow EelEditableLabel.entry { transition: none; } @@ -3045,7 +3045,7 @@ EphyWindow .floating-bar { .documents-favorite.button:active, .documents-favorite.button:active:hover { - color: #cddcbe; } + color: #b2c4e2; } .documents-entry-tag { background-color: #688BC6; @@ -3056,10 +3056,10 @@ EphyWindow .floating-bar { padding: 4px; } .documents-entry-tag:hover { color: #ffffff; - background-color: #a4bf89; } + background-color: #7796cc; } .documents-entry-tag:active { color: #ffffff; - background-color: #90b16f; } + background-color: #5980c0; } .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { background: none; border: none; diff --git a/themes/Mint-Y-Darker-Polo/index.theme b/themes/Mint-Y-Darker-Polo/index.theme index 2d6f824..3d89b5d 100644 --- a/themes/Mint-Y-Darker-Polo/index.theme +++ b/themes/Mint-Y-Darker-Polo/index.theme @@ -6,7 +6,7 @@ Encoding=UTF-8 [X-GNOME-Metatheme] GtkTheme=Mint-Y-Darker-Polo -MetacityTheme=Mint-Y-Dark-Polo +MetacityTheme=Mint-Y-Darker-Polo IconTheme=Mint-Y CursorTheme=DMZ-Black ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/bottom-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/close-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/close-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/close-prelight.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/close-pressed.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/hide-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/left-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/left-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/maximize-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/menu-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/right-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/right-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/shade-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/stick-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/themerc b/themes/Mint-Y-Darker-Polo/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-1-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-2-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-3-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-4-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-5-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/top-left-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/top-right-active.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Polo/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Darker-Polo/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Darker-Polo/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Sidecar/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Sidecar/gtk-3.0/gtk.css index 22e7f06..ed29d2f 100644 --- a/themes/Mint-Y-Darker-Sidecar/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Darker-Sidecar/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #ffe182; - background-color: rgba(255, 225, 130, 0.2); } + border: 1px solid ##FFEDB5; + background-color: rgba(255, 237, 181, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/apps.rc b/themes/Mint-Y-Darker-Watusi/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..c296029 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..820df91 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..ef12ef9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..013bbd4 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..bc8aa69 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..6689a35 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..d7196f2 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..14b7374 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..27d32c7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..e19dd68 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..8c30fe3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..9ed55f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..d9a5c32 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/minus.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..5e58a8a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/null.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/plus.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..2692b94 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..a91e329 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..3f2232c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..f9ec947 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..84a8ce4 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..0722b77 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..e9b37a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..4ea6d28 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..0de85ab Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..c63f182 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/gtkrc b/themes/Mint-Y-Darker-Watusi/gtk-2.0/gtkrc new file mode 100644 index 0000000..eaa265b --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfbfb\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#353535\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/main.rc b/themes/Mint-Y-Darker-Watusi/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*<GtkMenu>*" style "menu" +widget_class "*<GtkMenuItem>*" style "menu_item" +widget_class "*<GtkCheckButton>*" style "checkbutton" +widget_class "*<GtkComboBox>" style "combobox" +widget_class "*<GtkComboBox>*<GtkButton>" style "combobox_button" +widget_class "*<GtkComboBox>*<GtkSeparator>" style "combobox_separator" +widget_class "*<GtkTreeView>*<GtkButton>*" style "treeview_header" +widget_class "*<GtkFileChooserDefault>*<GtkToolbar>" style "inline_toolbar" +widget_class "*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" +widget_class "*<GtkComboBoxEntry>*<GtkButton>" style "combobox_entry_button" +widget_class "*<GtkNotebook>*<GtkScrolledWindow>*<GtkViewport>" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "*<GtkNotebook>*<GtkEntry>" style "notebook_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkEntry>" style "entry" + +widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*<GtkEntry>" style "notebook_combobox_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*<GtkNotebook>.<GtkLabel>" style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "*<GtkNotebook>*<GtkEventBox>" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "*<GimpToolbox>*<GtkFrame>" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "*<GtkCustomMenu>*<GtkCustomMenuItem>*" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "<GtkEntry>" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*<GtkLabel>" style "text" +widget_class "*<GtkComboBox>*<GtkCellLayout>" style "text" +widget_class "*<GtkNotebook>*<GtkLabel>" style "text" +widget_class "*<GtkNotebook>*<GtkCellLayout>" style "text" diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>" style "toolbar_button" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkWidget>" style "toolbar_text" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>*<GtkLabel>" style "menubar-text" + diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" +widget_class "*CajaNavigationWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*CajaNavigationWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*CajaNavigationWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-2.0/panel.rc b/themes/Mint-Y-Darker-Watusi/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*<XfceArrowButton>" style "panelbuttons" +widget_class "*<XfceActionsPlugin>*" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel*<GtkMenuBar>*" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..78ee1e4 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..048c0d8 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..761ab63 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..93be191 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..1866d89 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..64bd31b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..3a908ee Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..aba0036 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..e6e6b5d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..c376f40 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..e815fc2 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..2a4cf70 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..63680c7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..ee8b7a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..820df91 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..31c6c6f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..00faa0e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..cd75c57 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..b5a1f97 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..c996734 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..9af9111 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..5f97b50 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..4e1891f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..78a24f7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..020a43c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..2b2638b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..030e87a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..d74ffc9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..4afee68 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..acaf956 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..e8fec8c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..3910f40 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..671fce0 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..5d4ae65 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..389d561 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..ac211f3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..2b7741a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..822a0f3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..f9ec947 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..f0e70a3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..27f99a8 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..c9e9a80 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..4aa9f0c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..08afe23 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..a9d6f2c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..72de2a9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..60eeb38 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..941e22a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..f2f575e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..1fb81c8 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..0f6b00e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..c1a339a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..abee281 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..182411a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..bea0fb5 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..bf810d5 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..3f18f1d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..3d6f051 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..a2e86b1 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..95d7dae Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..3721344 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..0926a59 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..1cf3b0d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..5ff1f15 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..1742a2b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..a615723 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..1cf3b0d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..5ff1f15 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..411b79c Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..f96c09b Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..3f18f1d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..3d6f051 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..b736725 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..48187f2 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..3b084de Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..360e91a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..3b084de Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..360e91a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/gtk-dark.css b/themes/Mint-Y-Darker-Watusi/gtk-3.0/gtk-dark.css new file mode 100644 index 0000000..7d8a322 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/gtk-3.0/gtk-dark.css @@ -0,0 +1,3783 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #c2d0b4; + -GtkWidget-visited-link-color: #a9bc95; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(218, 218, 218, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #DADADA; + background-color: #383838; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #383838; + color: #DADADA; } + .gtkstyle-fallback:prelight { + background-color: #525252; + color: #DADADA; } + .gtkstyle-fallback:active { + background-color: #1f1f1f; + color: #DADADA; } + .gtkstyle-fallback:insensitive { + background-color: #3d3d3d; + color: rgba(218, 218, 218, 0.55); } + .gtkstyle-fallback:selected { + background-color: #1080e4; + color: #ffffff; } + +.view { + color: #DADADA; + background-color: #404040; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(218, 218, 218, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #1080e4; + background-color: rgba(16, 128, 228, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #DADADA; } +.label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #404040; + border-top: 1px solid #292929; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #292929; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #292929; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #1080e4; + color: #ffffff; } + +GtkTextView { + background-color: #3c3c3c; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #353535; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #DADADA; + border-color: #292929; + background-color: #404040; + background-image: linear-gradient(to bottom, #404040); + box-shadow: inset 1px 0 #1080e4, inset -1px 0 #1080e4, inset 0 1px #1080e4, inset 0 -1px #1080e4; } + .entry:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(64, 64, 64, 0.55); + background-image: linear-gradient(to bottom, rgba(64, 64, 64, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #1080e4; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #1080e4; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #ab6239); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #292929; + background-image: linear-gradient(to bottom, #b1413b); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #bbbbbb; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #1080e4); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#1080e4), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1080e4), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(69, 69, 69, 0); + border-color: rgba(41, 41, 41, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; + transition-duration: 50ms; } + .button:active { + color: #DADADA; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #353535; + border-color: #212121; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #1080e4; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + .button.osd:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + .osd .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.suggested-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(218, 218, 218, 0.55); } + .button.destructive-action:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1080e4), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .inline-toolbar GtkToolButton > .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(143, 168, 118, 0.75); + background-color: rgba(143, 168, 118, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(41, 41, 41, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #292929; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(41, 41, 41, 0.5); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(41, 41, 41, 0.5); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: rgba(41, 41, 41, 0.3); } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #292929; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #292929; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #292929; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #292929; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #484848; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #DADADA; } + +*:link, .button:link, .button:visited { + color: #c2d0b4; } + *:link:visited, .button:visited { + color: #a9bc95; } + *:selected *:link:visited, *:selected .button:visited { + color: #d2dcc8; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #dce3d4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f4f6f1; } + *:link:active, .button:active:link, .button:active:visited { + color: #c2d0b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e9eee4; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e9eee4; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(41, 41, 41, 0.6); + border-style: none none none solid; + color: #d2d2d2; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(218, 218, 218, 0.55); } + .spinbutton .button:active { + background-color: #1080e4; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #1080e4; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #383838; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(53, 53, 53, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(218, 218, 218, 0.55); } + +.inline-toolbar { + background-color: #303030; + border-style: solid; + border-color: #292929; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #383838; + border-style: solid; + border-color: #292929; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #303030; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #1080e4; + border-color: #85a06a; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #1080e4; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #1080e4; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #1080e4; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #1080e4; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #1080e4; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(143, 168, 118, 0.65); + background-color: rgba(143, 168, 118, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(218, 218, 218, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c7d4bb; + border-top-color: rgba(218, 218, 218, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(218, 218, 218, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #bccbad; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #b5c1a8; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #8d8d8d; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #DADADA; } + GtkTreeView.view.expander:selected { + color: #dde5d6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #1080e4); } + GtkTreeView.view.progressbar:selected { + color: #1080e4; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #DADADA; + background-image: linear-gradient(to bottom, #292929); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #bbbbbb; + background-color: #353535; } + column-header .button:hover { + color: #1080e4; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #DADADA; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #1080e4; + box-shadow: inset 1px 1px 0 1px #1080e4, inset -1px 0 0 1px #1080e4, inset 1px 1px #404040, inset -1px 0 #404040; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #292929; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: #3d3d3d; } + column-header .button:active:hover { + color: #DADADA; } + column-header .button:insensitive { + border-color: #383838; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #1080e4; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383838; + border: 1px solid #292929; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #DADADA; + background-color: rgba(255, 255, 255, 0.06); + border: solid rgba(255, 255, 255, 0.11); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(218, 218, 218, 0.55); } + .menu .menuitem.separator { + color: rgba(64, 64, 64, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #4f4f4f; } + .menu.button.bottom { + border-top: 1px solid #4f4f4f; } + .menu.button:hover { + background-color: #4f4f4f; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #1c1c1c; + border-radius: 3px; + background-clip: border-box; + background-color: #383838; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(64, 64, 64, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #404040; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #292929; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #383838; } + .notebook.header.frame { + border: 0px solid #292929; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #292929; } + .notebook.header.bottom { + box-shadow: inset 0 1px #292929; } + .notebook.header.right { + box-shadow: inset 1px 0 #292929; } + .notebook.header.left { + box-shadow: inset -1px 0 #292929; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #404040, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #404040; + box-shadow: inset 0 -1px #404040, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #404040, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(64, 64, 64, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(64, 64, 64, 0.5); + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #404040; + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #404040; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(218, 218, 218, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(218, 218, 218, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #DADADA; } + .notebook tab .button { + padding: 0; + color: #a1a1a1; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #1080e4; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(218, 218, 218, 0.55); } + .notebook.arrow:hover { + color: rgba(218, 218, 218, 0.775); } + .notebook.arrow:active { + color: #DADADA; } + .notebook.arrow:insensitive { + color: rgba(218, 218, 218, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: darkgray; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #3d3d3d; + border: 1px none #292929; } + .scrollbar .slider { + background-color: #797979; } + .scrollbar .slider:hover { + background-color: dimgray; } + .scrollbar .slider:prelight:active { + background-color: #1080e4; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #292929 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #3d3d3d; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(218, 218, 218, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #454545); + border: 1px solid #242424; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3c3c3c); + border-color: rgba(36, 36, 36, 0.8); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #353535); + border-color: #1080e4; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #1080e4); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eef2ea); + border-color: #eef2ea; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c7d4bb); + border-color: #c7d4bb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); + border-color: #cdd8c1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2b2b2b); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #1080e4); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(143, 168, 118, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(43, 43, 43, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #474747); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #1080e4); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #cdd8c1); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(218, 218, 218, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #1080e4; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #1080e4; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #1080e4; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2b2b2b; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #1080e4; + background-color: #1080e4; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: #404040; + border-color: #404040; } + +.frame { + border: 1px solid #292929; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #404040; + border-color: #292929; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(255, 255, 255, 0.03); } +.list-row.activatable:active { + color: #DADADA; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #81976a; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(143, 168, 118, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #353535; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #1c1c1c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(143, 168, 118, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #DADADA; + border: 1px solid #292929; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #1080e4; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #DADADA; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(218, 218, 218, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #DADADA; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(218, 218, 218, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #DADADA; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #383838; + border-color: #292929; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #292929; } + +.sidebar, .sidebar .view { + border: none; + background-color: #383838; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #1080e4; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #1f1f1f; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(218, 218, 218, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #292929; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #DADADA; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #1080e4; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #1080e4; + outline-color: rgba(143, 168, 118, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(143, 168, 118, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + GtkColorSwatch#add-color-button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #404040; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(143, 168, 118, 0.2)), to(rgba(143, 168, 118, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.35); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #1f1f1f; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #1080e4; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #292929, inset 0 -1px #292929, inset 1px 0 #292929, inset -1px 0 #292929; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #292929; } + +GtkHTML { + background-color: #404040; + color: #DADADA; } + GtkHTML:active { + color: #ffffff; + background-color: #1080e4; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #a1a1a1; } + TerminalWindow .notebook tab .button:hover { + color: #DADADA; + border-color: #292929; + background-color: #454545; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #1080e4; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #DADADA; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #898989; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e9eee4; } + +NautilusNotebook.notebook { + background-color: #404040; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #404040; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(218, 218, 218, 0.5); + border-color: rgba(193, 193, 193, 0.5); } + .disk-space-display.used { + background-color: rgba(143, 168, 118, 0.8); + border-color: rgba(16, 128, 228, 0.8); } + .disk-space-display.free { + background-color: #303030; + border-color: #171717; } + +NautilusListView .view { + border-bottom: 1px solid #292929; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #1080e4; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #797979; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #585858; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #292929; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #404040; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #1080e4; } + +.open-document-selector-name-label { + color: #DADADA; } + +.open-document-selector-path-label { + color: #8d8d8d; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a1a1a1; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #DADADA; } + +.gedit-document-panel-dragged-row { + border: 1px solid #292929; + background-color: #1f1f1f; + color: #DADADA; } + +GeditStatusbar { + border-top: 1px solid #292929; + background-color: #383838; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #292929; } + +.gedit-search-entry-occurrences-tag { + color: rgba(218, 218, 218, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: #3d3d3d; + padding: 6px; + border-color: #292929; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #DADADA; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #404040; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #383838; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #353535; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #404040; + color: #DADADA; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #292929; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #404040; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #DADADA; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #1080e4; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(218, 218, 218, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #c2d0b4; } + +.documents-entry-tag { + background-color: #1080e4; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #99b082; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #85a06a; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #1080e4; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #292929); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #1080e4; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #1080e4; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #1080e4; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #292929; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(41, 41, 41, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #434343; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #1080e4; + border: none; + background-color: #171717; } + +.floating-bar { + background-color: #1080e4; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #1080e4; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #1080e4; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(218, 218, 218, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #DADADA; } + +.cs-header { + padding: 6px; + background-color: #353535; } + +#panel_window { + background-color: #292929; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #171717; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #DADADA; } + +#content_frame { + padding-bottom: 14px; + background-color: #383838; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #454545; } + #content_frame .button:hover { + color: #DADADA; + outline-color: rgba(218, 218, 218, 0.3); + border-color: #292929; + background-color: #525252; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #292929; + background-color: #1080e4; } + #content_frame .button:insensitive { + color: rgba(218, 218, 218, 0.55); + border-color: rgba(41, 41, 41, 0.55); + background-color: rgba(69, 69, 69, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #2f2f2f; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #252525; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + #buttonbox_frame .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +#login_window #user_combobox { + color: #DADADA; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #383838; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #282828; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #282828; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #353535; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #1080e4; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #4f4f4f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #353535; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #353535; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #1080e4; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #353535; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #282828; } + +NautilusWindow NautilusWindowSlot { + background-color: #404040; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #353535; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #383838; } +GtkFileChooserDialog .dialog-action-box { + background-color: #383838; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #0f0f0f; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #282828; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #292929; } + +.gedit-bottom-panel-paned { + background-color: #404040; } + +.gedit-document-panel { + background-color: #353535; } + .maximized .gedit-document-panel { + background-color: #353535; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #1080e4; + border: solid #1080e4; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #1080e4; + border: solid #1080e4; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #353535; } + .maximized GeditFileBrowserWidget { + background-color: #353535; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #232323; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #1080e4; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(127, 127, 127, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(22, 22, 22, 0.4); + background-color: #1080e4; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #606060; + border-color: rgba(22, 22, 22, 0.4); + background-color: rgba(109, 109, 109, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(22, 22, 22, 0.4); + background-image: linear-gradient(to bottom, #1080e4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(109, 109, 109, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #1080e4; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #DADADA; +@define-color theme_text_color #DADADA; +@define-color theme_bg_color #383838; +@define-color theme_base_color #404040; +@define-color theme_selected_bg_color #1080e4; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #DADADA; +@define-color text_color #DADADA; +@define-color bg_color #383838; +@define-color base_color #404040; +@define-color selected_bg_color #1080e4; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #3d3d3d; +@define-color insensitive_fg_color alpha(#dadada, 0.5); +@define-color insensitive_base_color #404040; +@define-color theme_unfocused_fg_color #DADADA; +@define-color theme_unfocused_text_color #DADADA; +@define-color theme_unfocused_bg_color #383838; +@define-color theme_unfocused_base_color #404040; +@define-color borders #292929; +@define-color unfocused_borders #292929; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #404040; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #1080e4; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/gtk.css b/themes/Mint-Y-Darker-Watusi/gtk-3.0/gtk.css new file mode 100644 index 0000000..ac5c08e --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/gtk-3.0/gtk.css @@ -0,0 +1,3777 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #0d65b4; + -GtkWidget-visited-link-color: #094a85; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #1080e4; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #0d65b4; + background-color: rgba(13, 101, 180, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #1080e4; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #1080e4; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #1080e4; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #1080e4; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #1080e4); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#1080e4), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1080e4), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(16, 128, 228, 0.75); + background-color: rgba(16, 128, 228, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #1080e4; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1080e4), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(16, 128, 228, 0.75); + background-color: rgba(16, 128, 228, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #1080e4; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #1080e4; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #1080e4; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #1080e4; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #1080e4; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #1080e4; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #0d65b4; } + *:link:visited, .button:visited { + color: #094a85; } + *:selected *:link:visited, *:selected .button:visited { + color: #9fccf4; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #1080e4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #e7f2fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #0d65b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #cfe6fa; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #cfe6fa; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #1080e4; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #1080e4; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #1080e4; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #1080e4; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f2f2f, #1d1d1d) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(222, 214, 214, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #252525; + color: #ded6d6; + background-color: #2f2f2f; } + .csd .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #1080e4; + border-color: #0f75d1; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #1080e4; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #1080e4; + outline-color: rgba(16, 128, 228, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(16, 128, 228, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #1080e4; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f2f2f; + border-color: #252525; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f2f2f; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #2f2f2f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: #ded6d6; + background-color: #2f2f2f; + box-shadow: inset 0 1px #373737; } + .csd .titlebar { + background-color: #2f2f2f; } + .titlebar:backdrop { + color: rgba(222, 214, 214, 0.7); + background-color: #333333; } + .csd .titlebar:backdrop { + background-color: #333333; } + .maximized .titlebar { + background-color: #2f2f2f; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #333333; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(222, 214, 214, 0) 25%, rgba(222, 214, 214, 0.35) 25%, rgba(222, 214, 214, 0.35) 75%, rgba(222, 214, 214, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-clip: padding-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(222, 214, 214, 0.85); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #1080e4; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #1080e4; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #a45b33); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, #aa3a34); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + outline-offset: -3px; + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; + background-clip: padding-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(16, 128, 228, 0.65); + background-color: rgba(16, 128, 228, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(16, 16, 16, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(222, 214, 214, 0.55); + background-color: rgba(47, 47, 47, 0); + border-color: rgba(47, 47, 47, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: #ded6d6; } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(222, 214, 214, 0.25); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(222, 214, 214, 0.7); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(222, 214, 214, 0.4); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(16, 16, 16, 0.4); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.4)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0.3)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #494949); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, #555555); + border-color: rgba(16, 16, 16, 0.7); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #414141); + border-color: rgba(16, 16, 16, 0.7); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #88c0f2; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #70b3ef; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #2d6597; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #b7d9f7; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #1080e4); } + GtkTreeView.view.progressbar:selected { + color: #1080e4; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #1080e4; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #1080e4; + box-shadow: inset 1px 1px 0 1px #1080e4, inset -1px 0 0 1px #1080e4, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f2f2f; + color: #ded6d6; } + .menubar:backdrop { + color: rgba(222, 214, 214, 0.7); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #1080e4; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(222, 214, 214, 0.4); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #1080e4; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #1080e4; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #1080e4; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #1080e4); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #0d65b4); + border-color: #0d65b4; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #dbecfb); + border-color: #dbecfb; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #88c0f2); + border-color: #88c0f2; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #93c6f3); + border-color: #93c6f3; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #1080e4); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 128, 228, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #1080e4); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #93c6f3); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #1080e4; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #1080e4; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #1080e4; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #1080e4; + background-color: #1080e4; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #0e73cd; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(16, 128, 228, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(16, 128, 228, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #1080e4; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f2f2f; + border-bottom: 1px solid #1d1d1d; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #1080e4; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #1080e4; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #1080e4; + outline-color: rgba(16, 128, 228, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(16, 128, 228, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(16, 128, 228, 0.2)), to(rgba(16, 128, 228, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(16, 128, 228, 0.2)), to(rgba(16, 128, 228, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(16, 128, 228, 0.2)), to(rgba(16, 128, 228, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(16, 128, 228, 0.2)), to(rgba(16, 128, 228, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1d1d1d, 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(29, 29, 29, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f2f2f; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 47, 47, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #1080e4; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #252525, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #1080e4; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #1080e4; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #cfe6fa; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(16, 128, 228, 0.8); + border-color: rgba(13, 101, 180, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #0d65b4; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(141, 141, 141, 0.4); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + background-color: #1080e4; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(222, 214, 214, 0.6); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(16, 16, 16, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(16, 16, 16, 0); } + +.gedit-headerbar-paned { + color: #252525; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #1080e4; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: #ded6d6; + outline-color: rgba(222, 214, 214, 0.3); + border-color: rgba(16, 16, 16, 0.4); + background-color: rgba(103, 103, 103, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(141, 141, 141, 0.4); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(222, 214, 214, 0.6); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #1080e4; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #66b1f4; } + +.documents-entry-tag { + background-color: #1080e4; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #1a8aef; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #0f75d1; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #1080e4; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #1080e4; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #1080e4; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #1080e4; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #1080e4; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #1080e4; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #1080e4; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: #ded6d6; + border-color: rgba(16, 16, 16, 0.4); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ded6d6; + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.4)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(222, 214, 214, 0.55); + background-image: linear-gradient(to bottom, rgba(103, 103, 103, 0.25)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #1080e4; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #252525; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #1080e4; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #1080e4; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #252525; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #2f2f2f; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #333333; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #1080e4; + border: solid #1080e4; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #1080e4; + border: solid #1080e4; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #1080e4; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #1080e4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #1080e4; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #1080e4; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #1080e4; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#ded6d6, 0.8); +@define-color wm_unfocused_title alpha(#ded6d6, 0.5); +@define-color wm_bg #2f2f2f; +@define-color wm_bg_unfocused #333333; +@define-color wm_highlight #373737; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #cc575d; +@define-color wm_button_close_hover_bg #d7787d; +@define-color wm_button_close_active_bg #be3841; +@define-color wm_icon_close_bg #2f343f; +@define-color wm_button_hover_bg #454C5C; +@define-color wm_button_active_bg #1080e4; +@define-color wm_button_hover_border #262932; +@define-color wm_icon_bg #90939B; +@define-color wm_icon_unfocused_bg #666A74; +@define-color wm_icon_hover_bg #C4C7CC; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Darker-Watusi/gtk-3.0/thumbnail.png b/themes/Mint-Y-Darker-Watusi/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Darker-Watusi/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Darker-Watusi/index.theme b/themes/Mint-Y-Darker-Watusi/index.theme new file mode 100644 index 0000000..a3d0279 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Darker-Watusi +Comment=A flat theme with transparent elements and dark menu and titlebars +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Darker-Watusi +MetacityTheme=Mint-Y-Darker-Watusi +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Darker-Watusi/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Darker-Watusi/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..938416f --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 2 1", +" c None", +". c #2F2F2F", +".", +".", +"."}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..1e2652f --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-left-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..f08c031 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-right-active.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 2 1", +" c None", +". c #2F2F2F", +"...", +"...", +"..."}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/close-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/close-active.xpm new file mode 100644 index 0000000..864b7b7 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/close-active.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 36 1 ", +" c #2F2F2F", +". c gray19", +"X c #313230", +"o c #373737", +"O c #383B36", +"+ c #3D3F3B", +"@ c #3E403C", +"# c #3E413C", +"$ c #535D49", +"% c #56624B", +"& c #58634C", +"* c #59654E", +"= c #5F6D52", +"- c #606E52", +"; c #61675A", +": c #62685B", +"> c #627054", +", c #647355", +"< c #657456", +"1 c #677757", +"2 c #737A6B", +"3 c #747B6C", +"4 c #80827F", +"5 c #81857C", +"6 c #82847F", +"7 c #8B987E", +"8 c #8B987F", +"9 c #94AC7D", +"0 c #95AC7D", +"q c #96AE7D", +"w c #95B178", +"e c #99B77B", +"r c #99B67D", +"t c #9AB87C", +"y c #818280", +"u c #838680", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" . ", +" #35y453# ", +" :u70rr075:. ", +" :u0rttttt05: ", +" O#50twttttwt0u@ ", +" X3utt.*te*.tt72 ", +" 59rt< %* >et05 ", +" 5tttt> -teer4 ", +" 5rree&. $ertr4 ", +" .50re* << *et05 ", +" .37ttO1tt<Oet72 ", +" .#50tttttttt04+ ", +" :50ttttte05: ", +" :470rr074:. ", +" #25u453@. ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/close-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..0e4e39d --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/close-inactive.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c gray22", +"O c #3E3E3E", +"+ c #515151", +"@ c #555555", +"# c #585858", +"$ c #5F5F5F", +"% c #606060", +"& c #646464", +"* c #727272", +"= c gray51", +"- c #888888", +"; c gray56", +": c #909090", +"> c gray58", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" .X X.. ", +" O**==**O ", +" %=-:>>:-=% ", +" %=:>>>>>>;=% ", +" +=:>:>>>>:>:=O ", +" *->>.#:>#.>>-* ", +" *:>>%.@@ $:>:* ", +" =:>>>$ $>>>>- ", +" .=>>>>+. +:>>>= ", +" X*:>>@.&%.@>>:= ", +" *->>o&>>&o>:-* ", +" O=:>>>>>>>>;=O ", +" $=;>>>>>>:=% ", +" $=-;:>:-=$ ", +" O**==**O ", +" ..X . X. ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/close-prelight.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..c319b10 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/close-prelight.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 38 1 ", +" c #2F2F2F", +". c #303130", +"X c #313230", +"o c #373737", +"O c #383C34", +"+ c #3E413B", +"@ c #3E423B", +"# c #536244", +"$ c #576846", +"% c #586847", +"& c #5B6D49", +"* c #5F734C", +"= c #60754C", +"- c #62774D", +"; c #647A4E", +": c #657B4F", +"> c #616A56", +", c #626B58", +"< c #626C58", +"1 c #677E50", +"2 c #737E68", +"3 c #747E69", +"4 c #747F69", +"5 c #81877A", +"6 c #80827F", +"7 c #82857E", +"8 c #82877E", +"9 c #81887A", +"0 c #83887E", +"q c #8B9E78", +"w c #8B9E79", +"e c #94BD6B", +"r c #94B772", +"t c #95B772", +"y c #95B971", +"u c #96BA72", +"i c #99C36F", +"p c #9AC66E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @496654@ ", +" <7qtiitq7, ", +" <0yppppppy7, ", +" .+7ypeppppepy7@ ", +" 3qppX%pp&Xppq3 ", +" 9rpp; %% *ppt5 ", +" .6ippp- *pppp6 ", +" 7ippp$. #ipii0. ", +" 9rpp% ;;X$pir7. ", +" 3qppO1pp1Opiq3 ", +" +7yppppppppy0O ", +" >0yppppppy0< ", +" ,7qriitq0> ", +" @396653O ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/close-pressed.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..b15992a --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/close-pressed.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 39 1 ", +" c #2F2F2F", +". c gray19", +"X c #303130", +"o c #373737", +"O c #353832", +"+ c #3A3D37", +"@ c #3B3E39", +"# c #3C3D39", +"$ c #46523A", +"% c #49553B", +"& c #4A573C", +"* c #4B593D", +"= c #4F5E3E", +"- c #50603F", +"; c #585F50", +": c #526340", +"> c #536541", +", c #5A6152", +"< c #6A7261", +"1 c #6A7361", +"2 c #6A7362", +"3 c #70904F", +"4 c #739551", +"5 c #749651", +"6 c #759553", +"7 c #759554", +"8 c #759654", +"9 c #76925A", +"0 c #77925A", +"q c #77915C", +"w c #77925C", +"e c #7B896C", +"r c #7B8A6C", +"t c #7B8075", +"y c #7B8176", +"u c #7F827B", +"i c #7F817C", +"p c #7F807D", +"a c #7F817E", +/* pixels */ +"oooooooooooooooooooooooo", +" ", +" ", +" ", +" ", +" @2tppt2@ ", +" ,prw889ep; ", +" ,u05555559p; ", +" ... $a854555535wu$ ", +" ... 2r84 *35*X58r< ", +" .. <w84-X%%X-5882 ", +" ..op8855- =558wa ", +" 2w855%X $4458a ", +" Xtw85%X-> &559yX ", +" 2r55O>55>O53e2 ", +" @p9555555559u+ ", +" ;2w555558wp, ", +" o,atq77qtp; ", +" ..o.#<p<222# ", +" .....o oooo ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/hide-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/hide-active.xpm new file mode 100644 index 0000000..79239a2 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c #909090", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..0bfa3d3 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #2F2F2F", +". c #373737", +"X c gray40", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" XXXXXX ", +" XXXXXX ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..f1078f4 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/hide-prelight.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXX.+$$$$$$$$$$+.XXXXX", +"XXXXX.#$$%%%%%%$## XXXXX", +"XXXXX.##$%%%%%%$$# XXXXX", +"XXXXX.+#$$$$$$$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..9ad9302 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/hide-pressed.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$==========$+.....", +".....o&==========%o.....", +"..... *==------=== .....", +"..... *==------==* .....", +".....o&==========%o.....", +".....+$==========$+.....", +".....o.&========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+o o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/left-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/left-active.xpm new file mode 100644 index 0000000..2103096 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/left-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..3ee3f0b --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-active.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c gray43", +"O c #717171", +"+ c #747474", +"@ c gray49", +"# c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .O##@ ", +" ...O## ", +" .+...o# ", +" .#+. .o ", +" .##O... ", +" .@##O.. ", +" .. . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..40dd986 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-inactive.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 8 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #535353", +"O c #565656", +"+ c #5B5B5B", +"@ c gray36", +"# c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" O##+ ", +" . .o## ", +" .O.. o# ", +" .#O. o ", +" .##o. . ", +" @##O. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..b04d285 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #9A9A9A", +"* c #9D9D9D", +"= c #A0A0A0", +"- c #AEAEAE", +"; c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$$%*;;-$#OoXXXXX", +"XXXXX.+$$$$%*;;$$+.XXXXX", +"XXXXX.##$=%$$*;$## XXXXX", +"XXXXX ##$;=%$$*$$# XXXXX", +"XXXXo.+#$;;*$$$$#+XXXXXX", +"XXXXXoO$$-;;*%$$#OoXXXXX", +"XXXXooX@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..2bf4b7f --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/maximize-pressed.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #444444", +"# c #555555", +"$ c #565656", +"% c #7B7B7B", +"& c gray50", +"* c #8E8E8E", +"= c gray58", +"- c #979797", +"; c #DADADA", +": c #DDDDDD", +"> c gray88", +", c #EAEAEA", +"< c white", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.$%*=%$.+.......", +"......+X&======&X+......", +".....o.&========&.X.....", +".....+$====:<<,==$+.....", +".....o&===--:<<==%o.....", +"..... *==:-==;<=== .....", +"..... *==<>===:==* .....", +"....XO&=-<<;-====%o.....", +".....O#*=,<<:====$+.....", +".....o.*========&.o.....", +"......+X&======&X+......", +".......+.$%**%$.+.......", +"........o+O o+o........", +"..........X...X.........", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/menu-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/menu-active.xpm new file mode 100644 index 0000000..8bce888 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/menu-active.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #494949", +"O c gray33", +"+ c #5D5D5D", +"@ c #747474", +"# c #777777", +"$ c gray53", +"% c gray56", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+. +%+ ", +" O%%##%%O ", +" o$%%$o ", +" X##X ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b0e1be3 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #3E3E3E", +"O c #444444", +"+ c #494949", +"@ c #565656", +"# c #585858", +"$ c gray38", +"% c #656565", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" . . ", +" +%+..+%+ ", +" O%%##%%O ", +" o$%%#O ", +" X@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/menu-prelight.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..51e419f --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/menu-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *menu_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #515151", +"& c #565656", +"* c #585858", +"= c #6C6C6C", +"- c gray48", +"; c #868686", +": c #A4A4A4", +"> c #B9B9B9", +", c #C3C3C3", +"< c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$$$$$$@.oXXXXX", +"XXXXXoO$$%$$$$%$#OoXXXXX", +"XXXXX.+$;,;$$;,;$+.XXXXX", +"XXXXX.#$-,,::,,-## XXXXX", +"XXXXX #$$=><<>=$$# XXXXX", +"XXXXo.+#$$&::*$$#+XXXXXX", +"XXXXXoO$$$$$$$$$#OoXXXXX", +"XXXXXo.@$$$$$$$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..31c747f --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/menu-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #2A2A2A", +". c #2F2F2F", +"X c #323232", +"o c #373737", +"O c gray22", +"+ c gray26", +"@ c #565656", +"# c #7B7B7B", +"$ c gray50", +"% c #8E8E8E", +"& c gray58", +"* c #959595", +"= c gray62", +"- c #B1B1B1", +"; c gray74", +": c #C8C8C8", +"> c gray88", +", c gray89", +"< c gray96", +"1 c gray99", +"2 c #FEFEFE", +/* pixels */ +"oooooooooooooooooooooooo", +"........................", +"........................", +"........................", +".........X..............", +"........o+o O+o........", +".......+.@#%&#@.+.......", +"......+X$&&&&&&$X+......", +".....o.$&&&&&&&&$.o.....", +".....+@&&&&&&&&&&@+.....", +".....o$&:2:&&:2:&$O.....", +"..... %&;22,,22;&% .....", +"..... %&&-<22<-&&% .....", +".....o$&&&=,,=&&&#O.....", +".....+@%&&&&&&&&&@+.....", +".....o %&&&&&&&&$.o.....", +"......+X$&&&&&&$X+......", +".......+.@#%%#@.+.......", +"........o+o o+o........", +"..........X.............", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/right-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/right-active.xpm new file mode 100644 index 0000000..e8e87a9 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 2 1", +" c None", +". c #2F2F2F", +"..."}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/right-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/shade-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-active.xpm new file mode 100644 index 0000000..cf88acf --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #606060", +"@ c #6F6F6F", +"# c #727272", +"$ c gray49", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X@#X ", +" o%*&%o ", +" O&****&O ", +" +&+**@*O ", +" .X ** X. ", +" ** ", +" ** ", +" .$$ ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..4826696 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #323232", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #535353", +"$ c #555555", +"% c #5B5B5B", +"& c gray36", +"* c #606060", +"= c #656565", +"- c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" X$$X ", +" o*==%o ", +" O======O ", +" +=@==+=+ ", +" ...==... ", +" ==. ", +" == ", +" %% ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..58b0ad4 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-prelight.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 21 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #565656", +"* c #686868", +"= c gray46", +"- c #898989", +"; c gray55", +": c #9B9B9B", +"> c #9F9F9F", +", c gray68", +"< c #B6B6B6", +"1 c #C3C3C3", +"2 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXoX XoXXXXXXXXX", +"XXXXXXXo.O@##@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$%:>%$$@.oXXXXX", +"XXXXXoO$$*<22<*$#OoXXXXX", +"XXXXX.+$=112221=$+.XXXXX", +"XXXXX.#$-1;22;1-## XXXXX", +"XXXXX ##$%$22$%$$# XXXXX", +"XXXXo.+#$$$22$$$#+XXXXXX", +"XXXXooO$$$$22$$$#OoXXXXX", +"XXXXoo.@$$$,,$$$+.XXXXXX", +"XXXXXXo.@$$$$$#@.oXXXXXX", +"XXXXXXXo O+##@O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..66fda1c --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #2F2F2F", +". c gray19", +"X c #373737", +"o c #464646", +"O c #515151", +"+ c #626262", +"@ c #6F6F6F", +"# c #727272", +"$ c #7E7E7E", +"% c gray52", +"& c gray56", +"* c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" $$ ", +" ** ", +" ** ", +" .X ** X. ", +" +*+**+&+ ", +" O*****&O ", +" o%*&%o ", +" .@#X ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..b635912 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3C3C3C", +"O c #434343", +"+ c #4B4B4B", +"@ c #4C4C4C", +"# c #555555", +"$ c gray36", +"% c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" $$ ", +" %% ", +" %% ", +" . %% . ", +" @%@%%@%+ ", +" O%%%%%%O ", +" o$%%$o ", +" .##. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..c6bafc4 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c #272727", +". c #2A2A2A", +"X c #2F2F2F", +"o c #323232", +"O c #373737", +"+ c #434343", +"@ c #444444", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c #565656", +"& c #686868", +"* c gray46", +"= c #898989", +"- c gray55", +"; c #9B9B9B", +": c gray68", +"> c #AEAEAE", +", c #B6B6B6", +"< c gray76", +"1 c gray77", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOO", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXoo.. XoXXXXXXXXX", +"XXXXXXXo.O@$#@O.oXXXXXXX", +"XXXXXXo.@#$$$$#+.oXXXXXX", +"XXXXXo.@$$$>>$$$@.oXXXXX", +"XXXXXoO$$$$11$$$#OoXXXXX", +"XXXXX.+$$$$11$$$$+.XXXXX", +"XXXXX.#$$%$11$%$## XXXXX", +"XXXXX.##=1-<1-1=$# XXXXX", +"XXXXX.+#*<1<11<*#+XXXXXX", +"XXXXXoO$$&,<<,&$#OoXXXXX", +"XXXXXo.@$$#;>%$$+.XXXXXX", +"XXXXXXo.@$$#$$#@.oXXXXXX", +"XXXXXXXo O+##+O.ooXXXXXX", +"XXXXXXXXXoX XXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX", +"XXXXXXXXXXXXXXXXXXXXXXXX" +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/stick-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-active.xpm new file mode 100644 index 0000000..368e639 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #414141", +"O c #444444", +"+ c gray31", +"@ c #606060", +"# c gray38", +"$ c gray40", +"% c #676767", +"& c gray49", +"* c gray52", +"= c #898989", +"- c gray55", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X#&--&#X ", +" +=$O..O$=+ ", +" +*o o*+ ", +" X=o X=X ", +" #$ X$#. ", +" &o o& ", +" -X X= ", +" =X .= ", +" &o Xo& ", +" #$ $@ ", +" X=o o*X ", +" +*o . .X=+ ", +" +=$oXXo$*+. ", +" X#&==&@X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..7bb6c4e --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-inactive.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray31", +"& c #5B5B5B", +"* c gray36", +"= c #606060", +"- c #646464", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$&--&#X.. ", +" +=$o..o$=+. ", +" +=o. . .o*+ ", +" X=o o=X ", +" $$. .## ", +" *o. o& ", +" ..=. .o* ", +" =X ..=. ", +" *o .O*. ", +" #$ .%# ", +" X=o o*. ", +" +=o. . .o=+ ", +" .+-$o..o$=+. ", +" .$*=-&#.. ", +" . . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..1abf476 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-prelight.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray39", +"# c gray40", +"$ c #838383", +"% c #909090", +"& c gray67", +"* c #ACACAC", +"= c #B6B6B6", +"- c #BBBBBB", +"; c gray75", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o$*;;&$o ", +" #-%#++#%-# ", +" #=@OOOOOO@=# ", +" o-@OOOOOOOO#-o ", +" $%OOOOOOOOOO%$ ", +" *#OOOOOOOOOO#& ", +" ;+OOOOOOOOOOO- ", +" ;+OOOOOOOOOOO; ", +" &#OOOOOOOOOO#*. ", +" $%OOOOOOOOOO%$ ", +" o-@OOOOOOOO@-X ", +" #=@OOOOOO@=# ", +" #-%#++#%-@ ", +" o$&;;&$o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..64bba8a --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c gray20", +"X c #373737", +"o c #3A3A3A", +"O c #3E3E3E", +"+ c #414141", +"@ c #444444", +"# c gray31", +"$ c #606060", +"% c gray38", +"& c gray40", +"* c #676767", +"= c #6F6F6F", +"- c gray44", +"; c gray49", +": c gray52", +"> c #898989", +", c gray55", +"< c #909090", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X%;,,;%X ", +" #>&@..@&># ", +" #:+ +:# ", +" X>+ o-,>-+.O:o ", +" %& o><<<<:oX*% ", +" ;+ =<<<<<<- +; ", +" ,X ><<<<<<, .> ", +" >X ,<<<<<<> .> ", +" ;+ -<<<<<<-X+;. ", +" %& O><<<<>o &% ", +" X>+.o-,>=o +:X ", +" #:+ .O:# ", +" #>&+oX+&:# ", +" X%;>>;$X ", +" . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..b2474de --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #2F2F2F", +". c #313131", +"X c #373737", +"o c #393939", +"O c gray23", +"+ c #414141", +"@ c gray26", +"# c #4B4B4B", +"$ c #4C4C4C", +"% c gray33", +"& c #555555", +"* c #5B5B5B", +"= c gray36", +"- c #606060", +"; c #646464", +": c gray40", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +" ", +" ", +" ", +" . ", +" X$*;;*#X.. ", +" +-$o..o$-+. ", +" +-o. . .o=+ ", +" X-o X%;;*o.o-X ", +" $$.X-::;:=X.$# ", +" =o.%;;:::;% o* ", +" ..-. -;::::;; X- ", +" -X ;::::::; .- ", +" *o %::;::;% o=. ", +" ##.O-;;;;-o.%# ", +" .X-o.o%;;%o.o-. ", +" +-o. . o=+ ", +" .+;$o..o%-+. ", +" .$=-;*#. ", +" . . ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..aa149ad --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 19 1 ", +" c #2F2F2F", +". c #373737", +"X c #3C3C3C", +"o c #3F3F3F", +"O c #4C4C4C", +"+ c #515151", +"@ c gray35", +"# c gray37", +"$ c gray39", +"% c gray40", +"& c #838383", +"* c #909090", +"= c gray61", +"- c gray67", +"; c #ACACAC", +": c #B6B6B6", +"> c #BBBBBB", +", c gray75", +"< c gray77", +/* pixels */ +"........................", +" ", +" ", +" ", +" ", +" o&;,,-&o ", +" %>*%++%*>% ", +" %:$OOOOOO$:% ", +" o>$O@=,,=#O%>o ", +" &*O@><<<<,@O*& ", +" -%O=<<<<<<=O%- ", +" ,+O,<<<<<<,OO, ", +" ,+O,<<<<<<>OO< ", +" -%O=<<<<<<=O%- ", +" &*O#,<<<<>@O*& ", +" o>$O@=>,=@O$>X ", +" %:$OOOOOO$:% ", +" %>*%++%*>$ ", +" o&-,,-&o ", +" ", +" ", +" ", +" ", +" " +}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/themerc b/themes/Mint-Y-Darker-Watusi/xfwm4/themerc new file mode 100644 index 0000000..b333fc9 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#cfcfcf +#active_text_shadow_color=#e7e8eb +inactive_text_color=#bababa +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-1-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..f38cd33 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-2-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..782c921 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-3-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..39c0c2e --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-4-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..19537cb --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-5-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..746f199 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/top-left-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..31e0277 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/top-left-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +" ....", +".++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/top-right-active.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..419b92c --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/top-right-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 3 1", +" c None", +". c #373737", +"+ c #2F2F2F", +".... ", +"++++.", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++"}; diff --git a/themes/Mint-Y-Darker-Watusi/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Darker-Watusi/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Darker-Watusi/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Fire/gtk-3.0/gtk.css b/themes/Mint-Y-Fire/gtk-3.0/gtk.css index dda3c93..c98017f 100644 --- a/themes/Mint-Y-Fire/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Fire/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #922525; - background-color: rgba(146, 37, 37, 0.2); } + border: 1px solid #B41919; + background-color: rgba(180, 25, 25, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Havelock/cinnamon/cinnamon.css b/themes/Mint-Y-Havelock/cinnamon/cinnamon.css new file mode 100644 index 0000000..a95b3f0 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #4a4a4a; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #5491d6; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px #5491d6; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: rgba(74, 74, 74, 0.55); + border: 1px solid rgba(217, 217, 217, 0.55); + background-color: rgba(245, 245, 245, 0.55); + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #5491d6; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #cfd6e6; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: #f8f8f8; + border-color: 1px solid #dee2eb; + box-shadow: inset 0 2px 4px rgba(248, 248, 248, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #5491d6; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #5491d6; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #aeaeae; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #bebebe; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #5491d6; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #5491d6; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("light-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("light-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #5491d6; + text-decoration: underline; } + .cinnamon-link:hover { + color: #5491d6; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #4a4a4a; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #ffffff; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #4a4a4a; + border-color: rgba(74, 74, 74, 0.11); + background-color: rgba(74, 74, 74, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(74, 74, 74, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #4a4a4a; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(74, 74, 74, 0.55); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #F0F0F0; + -arrow-border-width: 1px; + -arrow-border-color: #d9d9d9; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #5491d6; + color: #ffffff; + border: 1px solid #5491d6; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #5491d6; + background-color: #5491d6; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #5491d6; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #5491d6; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #d9d9d9; + border-radius: 2px; + background-color: #ffffff; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #4a4a4a; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #4a4a4a; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(74, 74, 74, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(74, 74, 74, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #4a4a4a; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #5491d6; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(74, 74, 74, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(74, 74, 74, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #4a4a4a; } + .popup-menu #notification { + color: #4a4a4a; + border-image: url("light-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #4a4a4a; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #4a4a4a; + border: 1px solid #d9d9d9; + background-color: #F0F0F0; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #5491d6; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #5491d6; + border: 0px solid #5491d6; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #4a4a4a; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #F0F0F0; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #4a4a4a; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #5491d6; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid #d9d9d9; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + border: 1px solid #5491d6; + background-color: #5491d6; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #ffffff; + border: 1px solid #d9d9d9; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(74, 74, 74, 0.55); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #4a4a4a; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #4a4a4a; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #4a4a4a; + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #5491d6; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #5491d6; + border: 1px solid #5491d6; + box-shadow: inset 0 2px 4px #5491d6; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #5491d6; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #5491d6; } + .workspace-button:hover { + color: rgba(154, 184, 124, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #5491d6; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #5491d6; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #5491d6; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #4a4a4a; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #4a4a4a; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #d9d9d9; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #F0F0F0; + color: #4a4a4a; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #d9d9d9; + border-radius: 5px 5px 0 0; + background-color: #e8e8e8; + color: #4a4a4a; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #5491d6; + background-color: rgba(154, 184, 124, 0.3); } + +.photoframe-box { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #5491d6; } + .tile-preview.snap { + background-color: rgba(154, 184, 124, 0.6); } + +.tile-hud { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #5491d6; } + .tile-hud.snap { + background-color: rgba(154, 184, 124, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..c840b85 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#5491d6;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#5491d6;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..a8c7bbc --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..fdf9cf7 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..afa9dea --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..f812cbb --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..5424d6e --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..c0b790b --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..fd415ed --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..4c97b11 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..765e877 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/menu-hover.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/menu-hover.svg new file mode 100644 index 0000000..938245a --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/menu.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/menu.svg new file mode 100644 index 0000000..5ae7466 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/submenu.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/submenu.svg new file mode 100644 index 0000000..378f29b --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/button-box.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/button-box.svg new file mode 100644 index 0000000..036f0d1 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/button-box.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/message.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/message.svg new file mode 100644 index 0000000..1eae93e --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/modal.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/modal.svg new file mode 100644 index 0000000..b61f537 --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/switch/switch-off.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/switch/switch-off.svg new file mode 100644 index 0000000..7c4ad4d --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/light-assets/switch/switch-on.svg b/themes/Mint-Y-Havelock/cinnamon/light-assets/switch/switch-on.svg new file mode 100644 index 0000000..0358d8d --- /dev/null +++ b/themes/Mint-Y-Havelock/cinnamon/light-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Havelock/cinnamon/thumbnail.png b/themes/Mint-Y-Havelock/cinnamon/thumbnail.png new file mode 100644 index 0000000..e278c10 Binary files /dev/null and b/themes/Mint-Y-Havelock/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/apps.rc b/themes/Mint-Y-Havelock/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Havelock/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/button.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..a7db3ae Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..1d63761 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..0ec70e0 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..8105a2a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..1144f56 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..0fe0bfa Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..c2626d4 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..3306b08 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/frame.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..b1ab2ab Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..e55cdcb Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..862f3c9 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..9b722bf Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..1e9beed Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/minus.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..48f13b1 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/null.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/plus.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..81c4531 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..69827c8 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..771dcc4 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..ae0c98a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..610f7e4 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..349a102 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..b8ab25b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/slider.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..fefc80e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..b3168b5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..486ce5b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/gtkrc b/themes/Mint-Y-Havelock/gtk-2.0/gtkrc new file mode 100644 index 0000000..cfdce6b --- /dev/null +++ b/themes/Mint-Y-Havelock/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfcfc\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#454545\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar.rc" diff --git a/themes/Mint-Y-Havelock/gtk-2.0/main.rc b/themes/Mint-Y-Havelock/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Havelock/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Havelock/gtk-2.0/panel.rc b/themes/Mint-Y-Havelock/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Havelock/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..d476c05 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..8db05ee Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..6331172 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..809aad7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..3e13fb7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..c2ede5a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..757c9fe Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..219811b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..e651610 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..049a649 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..a41daa3 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..8d11e2e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..4fdd643 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..eb4a126 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..1d63761 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..c9f7d3b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..c54fc4c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..561baa8 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..2a226be Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..76a155a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..61cabc1 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..d1b81c8 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..8a93396 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..838575d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..090d27b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..343322f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..c24c50a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..d0fd54a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..64a4d32 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..0ff0347 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..4618820 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..9a17855 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..974733c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..10c0b89 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..a13ac6e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..71bb349 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..bfb3602 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..56f523e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..ae0c98a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..c3f1e44 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..12471d6 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..b5d2d25 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..61ff6ec Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..1e71eeb Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..ac4fa9e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..773441b Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..cf76b7d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..769ecd3 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..f1f9082 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..4197edc Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..1aabde5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..4998013 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..f0dcc61 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..ead32a2 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..39901e3 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..d9d3024 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..66fb833 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..05e0b08 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..00a1334 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..6d972c4 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..a329998 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..972d432 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..4e3d914 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..1f846dc Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..45e67cd Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..79d10e5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..4e3d914 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..1f846dc Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..5541b8a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..9e5346f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..66fb833 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..05e0b08 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..4e929fb Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..6eeca8e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..5f4828c Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..077a7f5 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..68b4ff0 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..28682cf Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..68b4ff0 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..28682cf Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Havelock/gtk-3.0/gtk.css b/themes/Mint-Y-Havelock/gtk-3.0/gtk.css new file mode 100644 index 0000000..0209831 --- /dev/null +++ b/themes/Mint-Y-Havelock/gtk-3.0/gtk.css @@ -0,0 +1,3781 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #3077c7; + -GtkWidget-visited-link-color: #265e9e; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5491d6; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #3077c7; + background-color: rgba(48, 119, 199, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5491d6; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #5491d6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5491d6; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5491d6; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #5491d6); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5491d6), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5491d6), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(84, 145, 214, 0.75); + background-color: rgba(84, 145, 214, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #5491d6; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5491d6), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(84, 145, 214, 0.75); + background-color: rgba(84, 145, 214, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #5491d6; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #5491d6; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #5491d6; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #5491d6; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #5491d6; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #5491d6; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #3077c7; } + *:link:visited, .button:visited { + color: #265e9e; } + *:selected *:link:visited, *:selected .button:visited { + color: #bbd3ef; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #5491d6; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #eef4fb; } + *:link:active, .button:active:link, .button:active:visited { + color: #3077c7; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dde9f7; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dde9f7; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #5491d6; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5491d6; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #5491d6; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #5491d6; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #d9d9d9, #c7c7c7) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #c7c7c7; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; } + .csd .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #5491d6; + border-color: #4486d2; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #5491d6; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #5491d6; + outline-color: rgba(84, 145, 214, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(84, 145, 214, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #5491d6; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #d9d9d9; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #d9d9d9; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 4px 4px 0 0; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: inset 0 1px #e1e1e1; } + .csd .titlebar { + background-color: #d9d9d9; } + .titlebar:backdrop { + color: rgba(81, 67, 67, 0.6); + background-color: #e1e1e1; } + .csd .titlebar:backdrop { + background-color: #e1e1e1; } + .maximized .titlebar { + background-color: #d9d9d9; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #e1e1e1; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(81, 67, 67, 0) 25%, rgba(81, 67, 67, 0.25) 25%, rgba(81, 67, 67, 0.25) 75%, rgba(81, 67, 67, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(81, 67, 67, 0.75); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #5491d6; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5491d6; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #e89f77); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #ee7e78); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + outline-offset: -3px; + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #5491d6; + background-clip: border-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(84, 145, 214, 0.65); + background-color: rgba(84, 145, 214, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #5491d6; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #5491d6; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #5491d6; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(81, 67, 67, 0.9); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(81, 67, 67, 0.15); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(81, 67, 67, 0.6); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(81, 67, 67, 0.3); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: rgba(81, 67, 67, 0.9); + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #5491d6; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #5491d6; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(81, 67, 67, 0.25); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.25)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.2)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, whitesmoke); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, white); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #ededed); + border-color: rgba(81, 67, 67, 0.4); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #aac8eb; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #98bde6; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #4f6e90; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #ccdef3; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #5491d6); } + GtkTreeView.view.progressbar:selected { + color: #5491d6; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #5491d6; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5491d6; + box-shadow: inset 1px 1px 0 1px #5491d6, inset -1px 0 0 1px #5491d6, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #d9d9d9; + color: rgba(81, 67, 67, 0.9); } + .menubar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5491d6; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(81, 67, 67, 0.3); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5491d6; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #5491d6; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #5491d6); + border-color: #5491d6; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #5491d6; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5491d6); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #3077c7); + border-color: #3077c7; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eff9); + border-color: #e5eff9; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #aac8eb); + border-color: #aac8eb; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b2ceed); + border-color: #b2ceed; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5491d6); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(84, 145, 214, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5491d6); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b2ceed); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5491d6; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5491d6; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #5491d6; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5491d6; + background-color: #5491d6; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #4c83c1; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(84, 145, 214, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(84, 145, 214, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5491d6; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #d9d9d9; + border-bottom: 1px solid #c7c7c7; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #5491d6; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5491d6; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #5491d6; + outline-color: rgba(84, 145, 214, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(84, 145, 214, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(84, 145, 214, 0.2)), to(rgba(84, 145, 214, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(84, 145, 214, 0.2)), to(rgba(84, 145, 214, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(84, 145, 214, 0.2)), to(rgba(84, 145, 214, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(84, 145, 214, 0.2)), to(rgba(84, 145, 214, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 4px 4px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 4px 4px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #d9d9d9; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(217, 217, 217, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #5491d6; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max.png"), url("assets/titlebutton-max@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop.png"), url("assets/titlebutton-max-backdrop@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover.png"), url("assets/titlebutton-max-hover@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active.png"), url("assets/titlebutton-max-active@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min.png"), url("assets/titlebutton-min@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop.png"), url("assets/titlebutton-min-backdrop@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover.png"), url("assets/titlebutton-min-hover@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active.png"), url("assets/titlebutton-min-active@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #5491d6; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #c7c7c7, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #5491d6; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #5491d6; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dde9f7; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(84, 145, 214, 0.8); + border-color: rgba(48, 119, 199, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #3077c7; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #5491d6; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } + +.gedit-headerbar-paned { + color: #c7c7c7; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5491d6; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: rgba(81, 67, 67, 0.9); + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: rgba(81, 67, 67, 0.9); + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(255, 255, 255, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(81, 67, 67, 0.5); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5491d6; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a6c6ea; } + +.documents-entry-tag { + background-color: #5491d6; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #649cda; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #4486d2; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #5491d6; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5491d6; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5491d6; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #5491d6; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #5491d6; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #5491d6; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5491d6; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #5491d6; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5491d6; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5491d6; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #c7c7c7; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #5491d6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5491d6; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #c7c7c7; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5491d6; + border: solid #5491d6; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5491d6; + border: solid #5491d6; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5491d6; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5491d6; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #5491d6); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5491d6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #5491d6; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #5491d6; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#514343, 0.8); +@define-color wm_unfocused_title alpha(#514343, 0.5); +@define-color wm_bg #d9d9d9; +@define-color wm_bg_unfocused #e1e1e1; +@define-color wm_highlight #e1e1e1; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f46067; +@define-color wm_button_close_hover_bg #f68086; +@define-color wm_button_close_active_bg #f13039; +@define-color wm_icon_close_bg #F8F8F9; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #5491d6; +@define-color wm_button_hover_border #D1D3DA; +@define-color wm_icon_bg #90949E; +@define-color wm_icon_unfocused_bg #B6B8C0; +@define-color wm_icon_hover_bg #7A7F8B; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Havelock/gtk-3.0/thumbnail.png b/themes/Mint-Y-Havelock/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Havelock/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Havelock/index.theme b/themes/Mint-Y-Havelock/index.theme new file mode 100644 index 0000000..9a1b9b5 --- /dev/null +++ b/themes/Mint-Y-Havelock/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Havelock +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Havelock +MetacityTheme=Mint-Y-Havelock +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Havelock/metacity-1/button-bg.svg b/themes/Mint-Y-Havelock/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Havelock/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/metacity-1/button-border.svg b/themes/Mint-Y-Havelock/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Havelock/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/metacity-1/close-icon.svg b/themes/Mint-Y-Havelock/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Havelock/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/metacity-1/max-icon.svg b/themes/Mint-Y-Havelock/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Havelock/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Havelock/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..750a8eb --- /dev/null +++ b/themes/Mint-Y-Havelock/metacity-1/metacity-theme-2.xml @@ -0,0 +1,767 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Havelock/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Havelock/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..41437c3 --- /dev/null +++ b/themes/Mint-Y-Havelock/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1040 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#787878" /> +<constant name="C_title_unfocused" value="#9d9d9d" /> + +<constant name="C_wm_bg_focused" value="#d9d9d9" /> +<constant name="C_wm_bg_unfocused" value="#d9d9d9" /> + +<constant name="C_wm_border" value="#d0d0d0" /> + +<constant name="C_wm_highlight" value="#eeeeee" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#5491d6)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#5491d6)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#5491d6)/0.8" /> + +<constant name="C_icon_close_bg" value="#F8F8F8" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#fdfdfd" /> +<constant name="C_button_bg_active" value="#909090" /> + +<constant name="C_button_border_hover" value="#D1D1D1" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#B6B6B6" /> +<constant name="C_icon_bg_hover" value="#7A7A7A" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_tiled_right"> + <line x1="0" y1="0" x2="0" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_tiled_left"> + <line x1="width-1" y1="0" x2="width-1" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Havelock/metacity-1/min-icon.svg b/themes/Mint-Y-Havelock/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Havelock/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/metacity-1/thumbnail.png b/themes/Mint-Y-Havelock/metacity-1/thumbnail.png new file mode 100644 index 0000000..54ef44a Binary files /dev/null and b/themes/Mint-Y-Havelock/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Havelock/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Havelock/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Havelock/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Havelock/xfwm4/bottom-active.xpm b/themes/Mint-Y-Havelock/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..1191a44 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/bottom-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +".", +".", +"+"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Havelock/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..727a097 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/bottom-left-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++", +".++", +"..."}; diff --git a/themes/Mint-Y-Havelock/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Havelock/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..0d6f9b5 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/bottom-right-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+", +"..+", +"+++"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/close-active.xpm b/themes/Mint-Y-Havelock/xfwm4/close-active.xpm new file mode 100644 index 0000000..f534cbf --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/close-active.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 30 1 ", +" c #9AB87C", +". c #9AB87D", +"X c #9CB97E", +"o c #9CB980", +"O c #9EBA82", +"+ c #A0BC83", +"@ c #A6BF8E", +"# c #A7BF8F", +"$ c #B9C8A9", +"% c #B9C9AA", +"& c #C4CEBA", +"* c #C5CEBB", +"= c #C9D9B9", +"- c #CCDBBD", +"; c #CFDDC1", +": c #D0DEC3", +"> c #D3D6D1", +", c #D4D6D1", +"< c #D4D6D2", +"1 c gray85", +"2 c #D5E1C9", +"3 c #D7E3CC", +"4 c #D8E3CC", +"5 c #D8E4CD", +"6 c #DCE6D2", +"7 c #EEEEEE", +"8 c #F4F7F2", +"9 c #FBFCFA", +"0 c gray99", +"q c #FDFDFD", +/* pixels */ +"777777777777777777777777", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"11111111,%@Xo@%>11111111", +"1111111&X. .o&1111111", +"111111&... ..X*111111", +"11111,X .+ o X,11111", +"11111%. .93XX30 $11111", +"11111@ -q540: . #11111", +"11111X -qq: .Xo11111", +"11111o. X4qq6X X11111", +"11111@.. 4q--q3 #11111", +"11111% 8= =8 . $11111", +"11111,X .+,11111", +"111111&X. .. &111111", +"1111111&+. XX&1111111", +"11111111,%#oX@%,11111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/close-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..5b4918b --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/close-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c gray71", +". c gray72", +"X c gray74", +"o c gray78", +"O c #CDCDCD", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #E9E9E9", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O. O#######", +"######O O######", +"#####@ . . @#####", +"#####o %# #% o#####", +"#####X +%##%+ X#####", +"##### +%%@ #####", +"#####. #%%# .#####", +"#####X #%++%# X#####", +"#####o $+ +$ o#####", +"#####@ .@#####", +"######O O######", +"#######+ O#######", +"########@oX Xo#########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/close-prelight.xpm b/themes/Mint-Y-Havelock/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..ad68f60 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/close-prelight.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 28 1 ", +" c #9ABC78", +". c #9ABC79", +"X c #9BBD79", +"o c #9CBD7A", +"O c #9CBD7C", +"+ c #9EBE7E", +"@ c #A0C07F", +"# c #A6C28B", +"$ c #A7C28B", +"% c #B9CAA7", +"& c #B9CBA8", +"* c #C5CFBA", +"= c #C9DBB7", +"- c #C4D0B9", +"; c #CCDDBB", +": c #CEDEBE", +"> c #D3D6D0", +", c #D4D6D1", +"< c gray85", +"1 c #D0E0C1", +"2 c #D5E3C7", +"3 c #D6E4C9", +"4 c #D8E5CB", +"5 c #D8E5CC", +"6 c #EEEEEE", +"7 c #F4F7F1", +"8 c #FBFCFA", +"9 c #FDFDFD", +/* pixels */ +"666666666666666666666666", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<,%#oO#&><<<<<<<<", +"<<<<<<<-o. .O*<<<<<<<", +"<<<<<<-... ..o*<<<<<<", +"<<<<<,o @ @ O,<<<<<", +"<<<<<&o .83o.28 &<<<<<", +"<<<<<# ;94491 . $<<<<<", +"<<<<<o :991 ..O<<<<<", +"<<<<<O. .o4894Oo O<<<<<", +"<<<<<#. 49;;94. $<<<<<", +"<<<<<& 7= =7. &<<<<<", +"<<<<<,o oO,<<<<<", +"<<<<<<* . *<<<<<<", +"<<<<<<<*Oo oO*<<<<<<<", +"<<<<<<<<,&$oo$&,<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/close-pressed.xpm b/themes/Mint-Y-Havelock/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..99b07f2 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/close-pressed.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 32 1 ", +" c #7BA056", +". c #7CA057", +"X c #7FA25B", +"o c #7FA25C", +"O c #80A35D", +"+ c #82A55F", +"@ c #83A660", +"# c #8CAB6E", +"$ c #8DAB6F", +"% c #8EAC70", +"& c #A9BC96", +"* c #A9BC97", +"= c #B9CCA5", +"- c #BAC6AE", +"; c #BBC7AE", +": c #BBC6AF", +"> c #BDCFAA", +", c #BFD1AE", +"< c #C1D2B0", +"1 c #C2D3B2", +"2 c #C8D7B9", +"3 c #CAD9BC", +"4 c #CCDABE", +"5 c #D1DEC5", +"6 c #D1D4CD", +"7 c #D2D5CF", +"8 c gray85", +"9 c #EEEEEE", +"0 c #F2F5EE", +"q c #FAFBFA", +"w c gray99", +"e c #FDFDFD", +/* pixels */ +"999999999999999999999999", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888886&$XX$&688888888", +"8888888-O O-8888888", +"888888-. o-888888", +"888886+ @ + o688888", +"88888& q3..2e &88888", +"88888# >e43e< %88888", +"88888X ,ee< o88888", +"88888X O3we5X X88888", +"88888$ 2e,<w2 %88888", +"88888& 0= =0 *88888", +"888886+ +788888", +"888888- .-888888", +"8888888-+. @:8888888", +"888888886&$XX$&688888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/hide-active.xpm b/themes/Mint-Y-Havelock/xfwm4/hide-active.xpm new file mode 100644 index 0000000..9a3913c --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #808080", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..8f9fee5 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #B6B6B6", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Havelock/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..520c42f --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/hide-prelight.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c gray48", +". c LightGray", +"X c gray84", +"o c gray85", +"O c #DFDFDF", +"+ c gray89", +"@ c #E4E4E4", +"# c #EEEEEE", +"$ c #F3F3F3", +"% c gray96", +"& c #FBFBFB", +"* c #FDFDFD", +/* pixels */ +"########################", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooOo..oOooooooooo", +"oooooooOX+$&&$@XOooooooo", +"ooooooOX%******$XOoooooo", +"ooooooX%********%Xoooooo", +"oooooO+**********+Oooooo", +"oooooX$**********$oooooo", +"oooooX&** **&.ooooo", +"ooooo.&** **&.ooooo", +"oooooo$**********$Xooooo", +"oooooO+**********+Oooooo", +"ooooooX%********$Xoooooo", +"ooooooOX$******$XOoooooo", +"oooooooOX@$&&$+XOooooooo", +"oooooooooOX..oOooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Havelock/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..8d7bd13 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/hide-pressed.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c #CECECE", +"@ c gray85", +"# c #EEEEEE", +"$ c white", +/* pixels */ +"########################", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@O O@@@@@", +"@@@@@X X@@@@@", +"@@@@@. .@@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@. .@@@@@", +"@@@@@X X@@@@@", +"@@@@@O O@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/left-active.xpm b/themes/Mint-Y-Havelock/xfwm4/left-active.xpm new file mode 100644 index 0000000..f42db54 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/left-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/left-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/maximize-active.xpm b/themes/Mint-Y-Havelock/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..de718db --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/maximize-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #909090", +". c #9F9F9F", +"X c gray65", +"o c #A9A9A9", +"O c #D7D7D7", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++X .+++++++++", +"+++++++++O++o +++++++++", +"+++++++++XO+Oo +++++++++", +"++++++++O X++Oo+++++++++", +"+++++++++ X++++++++++++", +"+++++++++. oO++++++++++", +"+++++++++O++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..8dcab42 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/maximize-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #B6B6B6", +". c #BCBCBC", +"X c gray74", +"o c gray76", +"O c #D8D8D8", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++o X+++++++++", +"++++++++++++o +++++++++", +"+++++++++X+++o +++++++++", +"+++++++++ XO+Oo+++++++++", +"++++++++O o++++++++++++", +"+++++++++. o+++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Havelock/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..998685b --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/maximize-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #939393", +"X c gray58", +"o c #A0A0A0", +"O c #A4A4A4", +"+ c #A7A7A7", +"@ c LightGray", +"# c gray84", +"$ c gray85", +"% c gray87", +"& c #E2E2E2", +"* c #E4E4E4", +"= c #EEEEEE", +"- c #F3F3F3", +"; c gray96", +": c #FBFBFB", +"> c #FDFDFD", +/* pixels */ +"========================", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$%&$@@$&%$$$$$$$$", +"$$$$$$$*#&-::-*#*$$$$$$$", +"$$$$$$*#;>>>>>>-#*$$$$$$", +"$$$$$%#;>>>>>>>>;#%$$$$$", +"$$$$$&&>>>:o X>>&&$$$$$", +"$$$$$$->>:>:+ >>-$$$$$$", +"$$$$$@:>>o:::+ >>:@$$$$$", +"$$$$$@:>> o>>:o>>:@$$$$$", +"$$$$$$->> +:>>>>-$$$$$$", +"$$$$$&*>>. X>>>>&&$$$$$", +"$$$$$%#->>>>>>>>;#%$$$$$", +"$$$$$$&#->>>>>>;#&$$$$$$", +"$$$$$$$*#&-::-&#*$$$$$$$", +"$$$$$$$$%&$#@$&%$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Havelock/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..b076be7 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/maximize-pressed.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 13 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c LightGray", +"@ c gray84", +"# c gray85", +"$ c #DADADA", +"% c #E6E6E6", +"& c gray91", +"* c #EEEEEE", +"= c white", +/* pixels */ +"************************", +"########################", +"########################", +"########################", +"########################", +"########OX. .XO########", +"#######o o#######", +"######o o######", +"#####O O#####", +"#####X @==% X#####", +"#####. . @== .#####", +"##### #. += #####", +"##### =# @ #####", +"#####. ==@ .#####", +"#####X &==@. X#####", +"#####O O#####", +"######o o######", +"#######o o#######", +"########OX. .X+########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/menu-active.xpm b/themes/Mint-Y-Havelock/xfwm4/menu-active.xpm new file mode 100644 index 0000000..2400a36 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/menu-active.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #909090", +". c #979797", +"X c #9D9D9D", +"o c gray63", +"O c gray66", +"+ c #B9B9B9", +"@ c #BCBCBC", +"# c #CDCDCD", +"$ c #D7D7D7", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%@.@%%@.+%%%%%%%%", +"%%%%%%%%+ OO +%%%%%%%%", +"%%%%%%%%%@. .@%%%%%%%%%", +"%%%%%%%%%%#oX#%%%%%%%%%%", +"%%%%%%%%%%%$%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..f38b6e2 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray72", +"X c #BCBCBC", +"o c gray76", +"O c #CBCBCB", +"+ c #CDCDCD", +"@ c LightGray", +"# c #D5D5D5", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$O.O$$O.O$$$$$$$$", +"$$$$$$$$O oo O$$$$$$$$", +"$$$$$$$$$+.. +$$$$$$$$$", +"$$$$$$$$$$#XX@$$$$$$$$$$", +"$$$$$$$$$$$#$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Havelock/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..1951c18 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/menu-pressed.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c gray58", +"X c gray62", +"o c gray64", +"O c gray65", +"+ c #B6B6B6", +"@ c #B9B9B9", +"# c gray75", +"$ c #C0C0C0", +"% c gray81", +"& c #D0D0D0", +"* c #D7D7D7", +"= c gray85", +"- c #E6E6E6", +"; c #EEEEEE", +": c #F4F4F4", +"> c #F9F9F9", +", c white", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"========================", +"========================", +"========================", +"========================", +"========&O. O&========", +"=======+ +=======", +"======+ @======", +"=====& &=====", +"=====O O=====", +"=====. #:# @:# .=====", +"===== $,,=*,,$ =====", +"===== @>,,>@ =====", +"=====. X-;o =====", +"=====O . O=====", +"=====% &=====", +"======+ +======", +"=======+ +=======", +"========&O. .O&========", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/right-active.xpm b/themes/Mint-Y-Havelock/xfwm4/right-active.xpm new file mode 100644 index 0000000..bbfecc2 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/right-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/right-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/shade-active.xpm b/themes/Mint-Y-Havelock/xfwm4/shade-active.xpm new file mode 100644 index 0000000..798916e --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/shade-active.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #909090", +". c gray57", +"X c #989898", +"o c gray63", +"O c #A4A4A4", +"+ c #A9A9A9", +"@ c #B2B2B2", +"# c gray71", +"$ c gray", +"% c #C0C0C0", +"& c gray78", +"* c #C8C8C8", +"= c #D2D2D2", +"- c gray83", +"; c gray85", +": c #EEEEEE", +/* pixels */ +"::::::::::::::::::::::::", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;=+O=;;;;;;;;;;", +";;;;;;;;;*X .X*;;;;;;;;;", +";;;;;;;;%.. ...$;;;;;;;;", +";;;;;;;;#.@. #.@;;;;;;;;", +";;;;;;;;;=;. ;=;;;;;;;;;", +";;;;;;;;;;;. ;;;;;;;;;;;", +";;;;;;;;;;;..;;;;;;;;;;;", +";;;;;;;;;;;oo;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..7724327 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/shade-inactive.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray", +"O c #C0C0C0", +"+ c gray78", +"@ c gray80", +"# c #CDCDCD", +"$ c gray82", +"% c #D5D5D5", +"& c gray85", +"* c #EEEEEE", +/* pixels */ +"************************", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&%oO%&&&&&&&&&&", +"&&&&&&&&&$X.XX#&&&&&&&&&", +"&&&&&&&&#.....X@&&&&&&&&", +"&&&&&&&&+.+..+.+&&&&&&&&", +"&&&&&&&&&%&..&%&&&&&&&&&", +"&&&&&&&&&&&..$&&&&&&&&&&", +"&&&&&&&&&&&..&&&&&&&&&&&", +"&&&&&&&&&&&oo&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Havelock/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..96eb5a1 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/shade-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c gray62", +"+ c gray65", +"@ c #BBBBBB", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=&%%*=*********", +"*******=&;><<>;&=*******", +"******=&,111111>&=******", +"******&,11,+O><1,&******", +"*****=-11=X X*11-=*****", +"*****&>1%. .$1>******", +"*****&<1@ @ #.@1<%*****", +"*****%<1<<1 1,11<%*****", +"******>1111 1111>&*****", +"*****=;1111 1111-=*****", +"******&>111oo111>&******", +"******=&>111111>&=******", +"*******=&;><<>-&=*******", +"*********=&%%*=*********", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Havelock/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..b0c23b5 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #909090", +". c #989898", +"X c #A0A0A0", +"o c gray65", +"O c #A9A9A9", +"+ c #B2B2B2", +"@ c gray71", +"# c gray", +"$ c #C0C0C0", +"% c #C8C8C8", +"& c gray83", +"* c gray84", +"= c gray85", +"- c #EEEEEE", +/* pixels */ +"------------------------", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"===========XX===========", +"=========== ===========", +"=========== ===========", +"=========*= =*=========", +"========@ + @ @========", +"========# #========", +"=========%. .%=========", +"==========*Oo*==========", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..129b31b --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray73", +"X c gray", +"o c #C0C0C0", +"O c gray78", +"+ c gray80", +"@ c gray82", +"# c #D7D7D7", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$XX$$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $#$$$$$$$$$", +"$$$$$$$$O O O O$$$$$$$$", +"$$$$$$$$+ +$$$$$$$$", +"$$$$$$$$$@. .@$$$$$$$$$", +"$$$$$$$$$$$oo#$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Havelock/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..21aa1ef --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c #A2A2A2", +"+ c gray65", +"@ c gray73", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=*%%*=*********", +"*******=&-><<>;&=*******", +"******=&,111111>&=******", +"******&,111oo111,&******", +"*****=-1111 1111-=*****", +"*****&>1111 1111>&*****", +"*****&<11,1 <<11<%*****", +"*****%<1#.@ @.@1<%*****", +"******>1% .$1>******", +"*****=-1<=X X=<1-=*****", +"******&>11,+O>11,&******", +"******=&>111111,&=******", +"*******=&;><<>;&=*******", +"*********=&%%&=*&*******", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/stick-active.xpm b/themes/Mint-Y-Havelock/xfwm4/stick-active.xpm new file mode 100644 index 0000000..d051f7a --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/stick-active.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #939393", +". c gray59", +"X c #989898", +"o c gray62", +"O c #AFAFAF", +"+ c gray70", +"@ c #B4B4B4", +"# c #C1C1C1", +"$ c #C8C8C8", +"% c #CBCBCB", +"& c gray80", +"* c #D2D2D2", +"= c #D5D5D5", +"- c gray85", +"; c #EEEEEE", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"--------*+o o@*--------", +"-------#.O%==%O.#-------", +"------#X&------%X#------", +"-----*.&--------%.*-----", +"-----++----------O+-----", +"-----o%----------%o-----", +"----= =----------= -----", +"-----.=----------= -----", +"-----o%=---------%o-----", +"-----@O----------O@-----", +"-----*.%--------&.*-----", +"------#X%------%X#------", +"-------#.O%=*%O.#-------", +"--------*+o. o@=--------", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"------------------------" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..4031c8d --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/stick-inactive.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #B7B7B7", +". c gray73", +"X c gray74", +"o c gray78", +"O c #CECECE", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #EEEEEE", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O.o+#@+o.O#######", +"######O.+@#####+.O######", +"#####@.+########+.@#####", +"#####oo##########oo#####", +"#####.+##########+X#####", +"#####.###########@ #####", +"##### ###########@.#####", +"#####X+##########+X#####", +"#####oo##########oo#####", +"#####@.+########+.@#####", +"######O.+#####@+.O######", +"#######O o+@#+o.O#######", +"########@oX Xo@########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Havelock/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..52a81d0 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/stick-prelight.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c gray70", +". c #B4B4B4", +"X c #B9B9B9", +"o c #C3C3C3", +"O c LightGray", +"+ c gray85", +"@ c gray87", +"# c gray88", +"$ c #EEEEEE", +"% c gray96", +"& c #FDFDFD", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++OX . XO++++++++", +"+++++++o.X@%%+X o+++++++", +"++++++o #&&&&&&@.o++++++", +"+++++O.#&&&&&&&&@.O+++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++ +&&&&&&&&&&+ +++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++ @&&&&&&&&&&+ +++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++O.@&&&&&&&&@.O+++++", +"++++++o.@&&&&&&@.o++++++", +"+++++++o X+%%+X.o+++++++", +"++++++++OX ...XO++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Havelock/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..6e61192 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c #939393", +"X c gray59", +"o c #989898", +"O c gray62", +"+ c #A7A7A7", +"@ c gray66", +"# c #AFAFAF", +"$ c gray70", +"% c #B4B4B4", +"& c #C1C1C1", +"* c #C8C8C8", +"= c #CBCBCB", +"- c gray80", +"; c #D2D2D2", +": c #D5D5D5", +"> c gray85", +", c #EEEEEE", +/* pixels */ +",,,,,,,,,,,,,,,,,,,,,,,,", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>;$O..O%;>>>>>>>>", +">>>>>>>&X#=::=#X&>>>>>>>", +">>>>>>&o->>>>>>=o&>>>>>>", +">>>>>;X->;+X.+=>=X;>>>>>", +">>>>>$$>-X .;>#$>>>>>", +">>>>>O=:@ .+>=O>>>>>", +">>>>>.:>X. .>:.>>>>>", +">>>>>X:>. X>:X>>>>>", +">>>>>O=>+ +:=O>>>>>", +">>>>>%$>=X. .X;>#%>>>>>", +">>>>:;X->-+..+;:=X:>>>>>", +">>>>>>&X=>>>>>:-o&>>>>>>", +">>>>>>>&X#=:;=$X&>>>>>>>", +">>>>>>>>:$O..O%;>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..e9fdd0e --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray74", +"O c #C1C1C1", +"+ c gray78", +"@ c #CECECE", +"# c gray82", +"$ c gray84", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%@X+#%$#+X@%%%%%%%", +"%%%%%%@X#$%%%%%#X@%%%%%%", +"%%%%%$X#%$XX.o$%#X$%%%%%", +"%%%%%++%$X.....$%++%%%%%", +"%%%%%X#%O......O%#o%%%%%", +"%%%%%X%%........%$.%%%%%", +"%%%%%.%%. ... .%$X%%%%%", +"%%%%%o#%X......o%#o%%%%%", +"%%%%%++%$......#%++%%%%%", +"%%%%%$.#%$OX.O$%#X$%%%%%", +"%%%%%%@X#%%%%%$#X@%%%%%%", +"%%%%%%%@.+#$%#+X@%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Havelock/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..417902c --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #838383", +"X c gray64", +"o c #A4A4A4", +"O c gray70", +"+ c #B4B4B4", +"@ c #B9B9B9", +"# c #C3C3C3", +"$ c LightGray", +"% c gray85", +"& c gray87", +"* c gray88", +"= c #E9E9E9", +"- c #EEEEEE", +"; c #F3F3F3", +": c gray96", +"> c #FDFDFD", +/* pixels */ +"------------------------", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$@OO+O@$%%%%%%%%", +"%%%%%%%#+@&::%@O#%%%%%%%", +"%%%%%%#O*>>>>>>&+#%%%%%%", +"%%%%%$+&>-X. o=>&+$%%%%%", +"%%%%%@@>-. .;>@@%%%%%", +"%%%%%O&>o o>%O%%%%%", +"%%%%%O:>. .>:+%%%%%", +"%%%%%+:>. .>:+%%%%%", +"%%%%%+&>X o>%O%%%%%", +"%%%%%@+>=. .->@@%%%%%", +"%%%%%$+&>-X..o->&+$%%%%%", +"%%%%%%#O&>>>>>>&+#%%%%%%", +"%%%%%%%#O@%::%@+#%%%%%%%", +"%%%%%%%%$@O+++@$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Havelock/xfwm4/themerc b/themes/Mint-Y-Havelock/xfwm4/themerc new file mode 100644 index 0000000..4e3833f --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#787878 +#active_text_shadow_color=#e7e8eb +inactive_text_color=#9d9d9d +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Havelock/xfwm4/title-1-active-shaded.xpm b/themes/Mint-Y-Havelock/xfwm4/title-1-active-shaded.xpm new file mode 100644 index 0000000..662295d --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-1-active-shaded.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_shaded_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEFF1", +"+ c #E7E8EB", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/title-1-active.xpm b/themes/Mint-Y-Havelock/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..209bb16 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/title-2-active.xpm b/themes/Mint-Y-Havelock/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..a3cfe4a --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/title-3-active.xpm b/themes/Mint-Y-Havelock/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..f9df553 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/title-4-active.xpm b/themes/Mint-Y-Havelock/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..87e3fb4 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/title-5-active.xpm b/themes/Mint-Y-Havelock/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..48bee41 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/top-left-active-shaded.xpm b/themes/Mint-Y-Havelock/xfwm4/top-left-active-shaded.xpm new file mode 100644 index 0000000..47dc7df --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/top-left-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_left_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #E8E9EB", +"# c #E7E8EB", +" .+++", +".@###", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/top-left-active.xpm b/themes/Mint-Y-Havelock/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..ef737a9 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/top-left-active.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 7 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #DFDFE0", +"# c #DADADA", +"$ c #D9D9D9", +"% c #BFBFBF", +" .+++", +".@#$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Havelock/xfwm4/top-right-active-shaded.xpm b/themes/Mint-Y-Havelock/xfwm4/top-right-active-shaded.xpm new file mode 100644 index 0000000..4920284 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/top-right-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEFF1", +"+ c #ECEDF0", +"@ c #E7E8EB", +"# c #E8E9EB", +"...+ ", +"@@@#+", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/top-right-active.xpm b/themes/Mint-Y-Havelock/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..5b57971 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/top-right-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"@ c #DFDFE0", +"# c #BFBFBF", +".... ", +"+++@.", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#"}; diff --git a/themes/Mint-Y-Havelock/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Havelock/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Havelock/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/cinnamon/cinnamon.css b/themes/Mint-Y-Hibiscus/cinnamon/cinnamon.css new file mode 100644 index 0000000..c990bd4 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #4a4a4a; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #851042; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px #851042; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: rgba(74, 74, 74, 0.55); + border: 1px solid rgba(217, 217, 217, 0.55); + background-color: rgba(245, 245, 245, 0.55); + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #851042; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #cfd6e6; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: #f8f8f8; + border-color: 1px solid #dee2eb; + box-shadow: inset 0 2px 4px rgba(248, 248, 248, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #851042; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #851042; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #aeaeae; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #bebebe; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #851042; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #851042; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("light-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("light-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #851042; + text-decoration: underline; } + .cinnamon-link:hover { + color: #851042; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #4a4a4a; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #ffffff; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #4a4a4a; + border-color: rgba(74, 74, 74, 0.11); + background-color: rgba(74, 74, 74, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(74, 74, 74, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #4a4a4a; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(74, 74, 74, 0.55); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #F0F0F0; + -arrow-border-width: 1px; + -arrow-border-color: #d9d9d9; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #851042; + color: #ffffff; + border: 1px solid #851042; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #851042; + background-color: #851042; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #851042; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #851042; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #d9d9d9; + border-radius: 2px; + background-color: #ffffff; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #4a4a4a; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #4a4a4a; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(74, 74, 74, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(74, 74, 74, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #4a4a4a; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #851042; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(74, 74, 74, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(74, 74, 74, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #4a4a4a; } + .popup-menu #notification { + color: #4a4a4a; + border-image: url("light-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #4a4a4a; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #4a4a4a; + border: 1px solid #d9d9d9; + background-color: #F0F0F0; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #851042; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #851042; + border: 0px solid #851042; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #4a4a4a; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #F0F0F0; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #4a4a4a; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #851042; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid #d9d9d9; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + border: 1px solid #851042; + background-color: #851042; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #ffffff; + border: 1px solid #d9d9d9; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(74, 74, 74, 0.55); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #4a4a4a; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #4a4a4a; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #4a4a4a; + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #851042; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #851042; + border: 1px solid #851042; + box-shadow: inset 0 2px 4px #851042; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #851042; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #851042; } + .workspace-button:hover { + color: rgba(154, 184, 124, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #851042; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #851042; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #851042; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #4a4a4a; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #4a4a4a; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #d9d9d9; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #F0F0F0; + color: #4a4a4a; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #d9d9d9; + border-radius: 5px 5px 0 0; + background-color: #e8e8e8; + color: #4a4a4a; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #851042; + background-color: rgba(154, 184, 124, 0.3); } + +.photoframe-box { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #851042; } + .tile-preview.snap { + background-color: rgba(154, 184, 124, 0.6); } + +.tile-hud { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #851042; } + .tile-hud.snap { + background-color: rgba(154, 184, 124, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..53c3a45 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#851042;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#851042;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..c94ddd3 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..16c27c8 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..2f8a68f --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..fa6ab14 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..fdce694 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..c2a0c89 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..01c2171 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..398153f --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..765e877 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/menu-hover.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/menu-hover.svg new file mode 100644 index 0000000..938245a --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/menu.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/menu.svg new file mode 100644 index 0000000..5ae7466 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/submenu.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/submenu.svg new file mode 100644 index 0000000..378f29b --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/button-box.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/button-box.svg new file mode 100644 index 0000000..036f0d1 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/button-box.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/message.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/message.svg new file mode 100644 index 0000000..8c0df99 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/modal.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/modal.svg new file mode 100644 index 0000000..b61f537 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/switch/switch-off.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/switch/switch-off.svg new file mode 100644 index 0000000..7c4ad4d --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/light-assets/switch/switch-on.svg b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/switch/switch-on.svg new file mode 100644 index 0000000..ce25e81 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/cinnamon/light-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Hibiscus/cinnamon/thumbnail.png b/themes/Mint-Y-Hibiscus/cinnamon/thumbnail.png new file mode 100644 index 0000000..e278c10 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/apps.rc b/themes/Mint-Y-Hibiscus/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..b4b8455 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..7d55a2e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..d752b71 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..bc1e57c Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..fa4c9ac Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..aeebdfb Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..6cc5a37 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..67193d4 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..cf64b81 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..f20cb34 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..d478312 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..775c0fb Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..2a72ea1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/minus.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..1399448 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/null.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/plus.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..1b8bcad Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..4f21456 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..1052415 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..5fc9e0b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..701cca4 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..5bffc03 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..a1d2cf6 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..e7efc8f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..8d70513 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..5b8f763 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/gtkrc b/themes/Mint-Y-Hibiscus/gtk-2.0/gtkrc new file mode 100644 index 0000000..cfdce6b --- /dev/null +++ b/themes/Mint-Y-Hibiscus/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfcfc\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#454545\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar.rc" diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/main.rc b/themes/Mint-Y-Hibiscus/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-2.0/panel.rc b/themes/Mint-Y-Hibiscus/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..089c145 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..19c6ef1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..2f03f96 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..ad00c49 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..efbc75d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..fb9e759 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..4827943 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..8e5c2a1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..8f6daf5 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..29b4e0a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..c43f9c3 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..5eb7caa Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..dd6e3b1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..40c3278 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..7d55a2e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..856c246 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..1c93dc6 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..4f12140 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..335e71a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..d919b9c Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..15a420b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..da1c01e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..77a5e28 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..a3469d9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..154b982 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..70fd58e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..7c6a76d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..eba25b5 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..0cbccc4 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..5a0f68f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..51afedd Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..75d572a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..21f7c8f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..dd186c2 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..3bf5ba0 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..f853bb9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..cad4427 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..2ecf36a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..5fc9e0b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..b168f14 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..0790193 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..67f3760 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..3e5cc54 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..5da58e6 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..a7a7d44 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..633c736 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..22b0dc1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..3552aad Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..325b022 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..a844dff Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..965f41a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..1f2c400 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..e9c86f7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..d4b1dde Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..ccd93aa Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..f958a30 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..2deb8d3 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..ec39508 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..6c2971b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..6bee127 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..3437f33 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..6d218dc Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..75def4b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..e7d01eb Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..a98387d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..9ccfe68 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..75def4b Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..e7d01eb Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..ce85be2 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..ce6e0ba Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..2deb8d3 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..ec39508 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..6c1c870 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..1d4f397 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..0362949 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..4321e0f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..0046f77 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..48fc0f7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..0046f77 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..48fc0f7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/gtk.css b/themes/Mint-Y-Hibiscus/gtk-3.0/gtk.css new file mode 100644 index 0000000..1a6e08c --- /dev/null +++ b/themes/Mint-Y-Hibiscus/gtk-3.0/gtk.css @@ -0,0 +1,3781 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #570b2b; + -GtkWidget-visited-link-color: #2a0515; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #851042; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #570b2b; + background-color: rgba(87, 11, 43, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #851042; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #851042; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #851042; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #851042; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #851042); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#851042), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#851042), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(133, 16, 66, 0.75); + background-color: rgba(133, 16, 66, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #851042; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#851042), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(133, 16, 66, 0.75); + background-color: rgba(133, 16, 66, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #851042; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #851042; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #851042; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #851042; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #851042; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #851042; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #570b2b; } + *:link:visited, .button:visited { + color: #2a0515; } + *:selected *:link:visited, *:selected .button:visited { + color: #ce9fb3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #851042; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #f3e7ec; } + *:link:active, .button:active:link, .button:active:visited { + color: #570b2b; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #e7cfd9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #e7cfd9; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #851042; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #851042; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #851042; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #851042; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #d9d9d9, #c7c7c7) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #c7c7c7; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; } + .csd .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #851042; + border-color: #730e39; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #851042; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #851042; + outline-color: rgba(133, 16, 66, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(133, 16, 66, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #851042; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #d9d9d9; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #d9d9d9; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 4px 4px 0 0; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: inset 0 1px #e1e1e1; } + .csd .titlebar { + background-color: #d9d9d9; } + .titlebar:backdrop { + color: rgba(81, 67, 67, 0.6); + background-color: #e1e1e1; } + .csd .titlebar:backdrop { + background-color: #e1e1e1; } + .maximized .titlebar { + background-color: #d9d9d9; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #e1e1e1; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(81, 67, 67, 0) 25%, rgba(81, 67, 67, 0.25) 25%, rgba(81, 67, 67, 0.25) 75%, rgba(81, 67, 67, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(81, 67, 67, 0.75); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #851042; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #851042; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #e89f77); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #ee7e78); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + outline-offset: -3px; + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #851042; + background-clip: border-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(133, 16, 66, 0.65); + background-color: rgba(133, 16, 66, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #851042; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #851042; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #851042; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(81, 67, 67, 0.9); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(81, 67, 67, 0.15); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(81, 67, 67, 0.6); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(81, 67, 67, 0.3); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: rgba(81, 67, 67, 0.9); + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #851042; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #851042; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(81, 67, 67, 0.25); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.25)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.2)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, whitesmoke); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, white); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #ededed); + border-color: rgba(81, 67, 67, 0.4); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #c288a1; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #b6708e; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #682d46; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #dab7c6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #851042); } + GtkTreeView.view.progressbar:selected { + color: #851042; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #851042; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #851042; + box-shadow: inset 1px 1px 0 1px #851042, inset -1px 0 0 1px #851042, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #d9d9d9; + color: rgba(81, 67, 67, 0.9); } + .menubar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #851042; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(81, 67, 67, 0.3); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #851042; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #851042; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #851042); + border-color: #851042; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #851042; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #851042); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #570b2b); + border-color: #570b2b; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #eddbe3); + border-color: #eddbe3; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #c288a1); + border-color: #c288a1; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #c893aa); + border-color: #c893aa; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #851042); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(133, 16, 66, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #851042); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #c893aa); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #851042; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #851042; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #851042; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #851042; + background-color: #851042; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #780e3b; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(133, 16, 66, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(133, 16, 66, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #851042; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #d9d9d9; + border-bottom: 1px solid #c7c7c7; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #851042; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #851042; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #851042; + outline-color: rgba(133, 16, 66, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(133, 16, 66, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(133, 16, 66, 0.2)), to(rgba(133, 16, 66, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(133, 16, 66, 0.2)), to(rgba(133, 16, 66, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(133, 16, 66, 0.2)), to(rgba(133, 16, 66, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(133, 16, 66, 0.2)), to(rgba(133, 16, 66, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 4px 4px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 4px 4px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #d9d9d9; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(217, 217, 217, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #851042; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max.png"), url("assets/titlebutton-max@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop.png"), url("assets/titlebutton-max-backdrop@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover.png"), url("assets/titlebutton-max-hover@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active.png"), url("assets/titlebutton-max-active@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min.png"), url("assets/titlebutton-min@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop.png"), url("assets/titlebutton-min-backdrop@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover.png"), url("assets/titlebutton-min-hover@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active.png"), url("assets/titlebutton-min-active@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #851042; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #c7c7c7, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #851042; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #851042; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #e7cfd9; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(133, 16, 66, 0.8); + border-color: rgba(87, 11, 43, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #570b2b; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #851042; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } + +.gedit-headerbar-paned { + color: #c7c7c7; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #851042; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: rgba(81, 67, 67, 0.9); + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: rgba(81, 67, 67, 0.9); + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(255, 255, 255, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(81, 67, 67, 0.5); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #851042; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #e01b6f; } + +.documents-entry-tag { + background-color: #851042; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #97124b; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #730e39; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #851042; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #851042; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #851042; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #851042; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #851042; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #851042; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #851042; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #851042; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #851042; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #851042; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #c7c7c7; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #851042; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #851042; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #c7c7c7; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #851042; + border: solid #851042; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #851042; + border: solid #851042; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #851042; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #851042; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #851042); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #851042; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #851042; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #851042; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#514343, 0.8); +@define-color wm_unfocused_title alpha(#514343, 0.5); +@define-color wm_bg #d9d9d9; +@define-color wm_bg_unfocused #e1e1e1; +@define-color wm_highlight #e1e1e1; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f46067; +@define-color wm_button_close_hover_bg #f68086; +@define-color wm_button_close_active_bg #f13039; +@define-color wm_icon_close_bg #F8F8F9; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #851042; +@define-color wm_button_hover_border #D1D3DA; +@define-color wm_icon_bg #90949E; +@define-color wm_icon_unfocused_bg #B6B8C0; +@define-color wm_icon_hover_bg #7A7F8B; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Hibiscus/gtk-3.0/thumbnail.png b/themes/Mint-Y-Hibiscus/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Hibiscus/index.theme b/themes/Mint-Y-Hibiscus/index.theme new file mode 100644 index 0000000..81c6da0 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Hibiscus +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Hibiscus +MetacityTheme=Mint-Y-Hibiscus +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Hibiscus/metacity-1/button-bg.svg b/themes/Mint-Y-Hibiscus/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/metacity-1/button-border.svg b/themes/Mint-Y-Hibiscus/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/metacity-1/close-icon.svg b/themes/Mint-Y-Hibiscus/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Hibiscus/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/metacity-1/max-icon.svg b/themes/Mint-Y-Hibiscus/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Hibiscus/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..750a8eb --- /dev/null +++ b/themes/Mint-Y-Hibiscus/metacity-1/metacity-theme-2.xml @@ -0,0 +1,767 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Hibiscus/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Hibiscus/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..9c3ceef --- /dev/null +++ b/themes/Mint-Y-Hibiscus/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1040 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#787878" /> +<constant name="C_title_unfocused" value="#9d9d9d" /> + +<constant name="C_wm_bg_focused" value="#d9d9d9" /> +<constant name="C_wm_bg_unfocused" value="#d9d9d9" /> + +<constant name="C_wm_border" value="#d0d0d0" /> + +<constant name="C_wm_highlight" value="#eeeeee" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#851042)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#851042)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#851042)/0.8" /> + +<constant name="C_icon_close_bg" value="#F8F8F8" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#fdfdfd" /> +<constant name="C_button_bg_active" value="#909090" /> + +<constant name="C_button_border_hover" value="#D1D1D1" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#B6B6B6" /> +<constant name="C_icon_bg_hover" value="#7A7A7A" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_tiled_right"> + <line x1="0" y1="0" x2="0" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_tiled_left"> + <line x1="width-1" y1="0" x2="width-1" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Hibiscus/metacity-1/min-icon.svg b/themes/Mint-Y-Hibiscus/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/metacity-1/thumbnail.png b/themes/Mint-Y-Hibiscus/metacity-1/thumbnail.png new file mode 100644 index 0000000..54ef44a Binary files /dev/null and b/themes/Mint-Y-Hibiscus/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Hibiscus/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Hibiscus/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Hibiscus/xfwm4/bottom-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..1191a44 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/bottom-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +".", +".", +"+"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..727a097 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/bottom-left-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++", +".++", +"..."}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..0d6f9b5 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/bottom-right-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+", +"..+", +"+++"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/close-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/close-active.xpm new file mode 100644 index 0000000..f534cbf --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/close-active.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 30 1 ", +" c #9AB87C", +". c #9AB87D", +"X c #9CB97E", +"o c #9CB980", +"O c #9EBA82", +"+ c #A0BC83", +"@ c #A6BF8E", +"# c #A7BF8F", +"$ c #B9C8A9", +"% c #B9C9AA", +"& c #C4CEBA", +"* c #C5CEBB", +"= c #C9D9B9", +"- c #CCDBBD", +"; c #CFDDC1", +": c #D0DEC3", +"> c #D3D6D1", +", c #D4D6D1", +"< c #D4D6D2", +"1 c gray85", +"2 c #D5E1C9", +"3 c #D7E3CC", +"4 c #D8E3CC", +"5 c #D8E4CD", +"6 c #DCE6D2", +"7 c #EEEEEE", +"8 c #F4F7F2", +"9 c #FBFCFA", +"0 c gray99", +"q c #FDFDFD", +/* pixels */ +"777777777777777777777777", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"11111111,%@Xo@%>11111111", +"1111111&X. .o&1111111", +"111111&... ..X*111111", +"11111,X .+ o X,11111", +"11111%. .93XX30 $11111", +"11111@ -q540: . #11111", +"11111X -qq: .Xo11111", +"11111o. X4qq6X X11111", +"11111@.. 4q--q3 #11111", +"11111% 8= =8 . $11111", +"11111,X .+,11111", +"111111&X. .. &111111", +"1111111&+. XX&1111111", +"11111111,%#oX@%,11111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/close-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..5b4918b --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/close-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c gray71", +". c gray72", +"X c gray74", +"o c gray78", +"O c #CDCDCD", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #E9E9E9", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O. O#######", +"######O O######", +"#####@ . . @#####", +"#####o %# #% o#####", +"#####X +%##%+ X#####", +"##### +%%@ #####", +"#####. #%%# .#####", +"#####X #%++%# X#####", +"#####o $+ +$ o#####", +"#####@ .@#####", +"######O O######", +"#######+ O#######", +"########@oX Xo#########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/close-prelight.xpm b/themes/Mint-Y-Hibiscus/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..ad68f60 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/close-prelight.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 28 1 ", +" c #9ABC78", +". c #9ABC79", +"X c #9BBD79", +"o c #9CBD7A", +"O c #9CBD7C", +"+ c #9EBE7E", +"@ c #A0C07F", +"# c #A6C28B", +"$ c #A7C28B", +"% c #B9CAA7", +"& c #B9CBA8", +"* c #C5CFBA", +"= c #C9DBB7", +"- c #C4D0B9", +"; c #CCDDBB", +": c #CEDEBE", +"> c #D3D6D0", +", c #D4D6D1", +"< c gray85", +"1 c #D0E0C1", +"2 c #D5E3C7", +"3 c #D6E4C9", +"4 c #D8E5CB", +"5 c #D8E5CC", +"6 c #EEEEEE", +"7 c #F4F7F1", +"8 c #FBFCFA", +"9 c #FDFDFD", +/* pixels */ +"666666666666666666666666", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<,%#oO#&><<<<<<<<", +"<<<<<<<-o. .O*<<<<<<<", +"<<<<<<-... ..o*<<<<<<", +"<<<<<,o @ @ O,<<<<<", +"<<<<<&o .83o.28 &<<<<<", +"<<<<<# ;94491 . $<<<<<", +"<<<<<o :991 ..O<<<<<", +"<<<<<O. .o4894Oo O<<<<<", +"<<<<<#. 49;;94. $<<<<<", +"<<<<<& 7= =7. &<<<<<", +"<<<<<,o oO,<<<<<", +"<<<<<<* . *<<<<<<", +"<<<<<<<*Oo oO*<<<<<<<", +"<<<<<<<<,&$oo$&,<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/close-pressed.xpm b/themes/Mint-Y-Hibiscus/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..99b07f2 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/close-pressed.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 32 1 ", +" c #7BA056", +". c #7CA057", +"X c #7FA25B", +"o c #7FA25C", +"O c #80A35D", +"+ c #82A55F", +"@ c #83A660", +"# c #8CAB6E", +"$ c #8DAB6F", +"% c #8EAC70", +"& c #A9BC96", +"* c #A9BC97", +"= c #B9CCA5", +"- c #BAC6AE", +"; c #BBC7AE", +": c #BBC6AF", +"> c #BDCFAA", +", c #BFD1AE", +"< c #C1D2B0", +"1 c #C2D3B2", +"2 c #C8D7B9", +"3 c #CAD9BC", +"4 c #CCDABE", +"5 c #D1DEC5", +"6 c #D1D4CD", +"7 c #D2D5CF", +"8 c gray85", +"9 c #EEEEEE", +"0 c #F2F5EE", +"q c #FAFBFA", +"w c gray99", +"e c #FDFDFD", +/* pixels */ +"999999999999999999999999", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888886&$XX$&688888888", +"8888888-O O-8888888", +"888888-. o-888888", +"888886+ @ + o688888", +"88888& q3..2e &88888", +"88888# >e43e< %88888", +"88888X ,ee< o88888", +"88888X O3we5X X88888", +"88888$ 2e,<w2 %88888", +"88888& 0= =0 *88888", +"888886+ +788888", +"888888- .-888888", +"8888888-+. @:8888888", +"888888886&$XX$&688888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/hide-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/hide-active.xpm new file mode 100644 index 0000000..9a3913c --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #808080", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..8f9fee5 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #B6B6B6", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Hibiscus/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..520c42f --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/hide-prelight.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c gray48", +". c LightGray", +"X c gray84", +"o c gray85", +"O c #DFDFDF", +"+ c gray89", +"@ c #E4E4E4", +"# c #EEEEEE", +"$ c #F3F3F3", +"% c gray96", +"& c #FBFBFB", +"* c #FDFDFD", +/* pixels */ +"########################", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooOo..oOooooooooo", +"oooooooOX+$&&$@XOooooooo", +"ooooooOX%******$XOoooooo", +"ooooooX%********%Xoooooo", +"oooooO+**********+Oooooo", +"oooooX$**********$oooooo", +"oooooX&** **&.ooooo", +"ooooo.&** **&.ooooo", +"oooooo$**********$Xooooo", +"oooooO+**********+Oooooo", +"ooooooX%********$Xoooooo", +"ooooooOX$******$XOoooooo", +"oooooooOX@$&&$+XOooooooo", +"oooooooooOX..oOooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Hibiscus/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..8d7bd13 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/hide-pressed.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c #CECECE", +"@ c gray85", +"# c #EEEEEE", +"$ c white", +/* pixels */ +"########################", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@O O@@@@@", +"@@@@@X X@@@@@", +"@@@@@. .@@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@. .@@@@@", +"@@@@@X X@@@@@", +"@@@@@O O@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/left-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/left-active.xpm new file mode 100644 index 0000000..f42db54 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/left-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/left-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/maximize-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..de718db --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/maximize-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #909090", +". c #9F9F9F", +"X c gray65", +"o c #A9A9A9", +"O c #D7D7D7", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++X .+++++++++", +"+++++++++O++o +++++++++", +"+++++++++XO+Oo +++++++++", +"++++++++O X++Oo+++++++++", +"+++++++++ X++++++++++++", +"+++++++++. oO++++++++++", +"+++++++++O++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..8dcab42 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/maximize-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #B6B6B6", +". c #BCBCBC", +"X c gray74", +"o c gray76", +"O c #D8D8D8", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++o X+++++++++", +"++++++++++++o +++++++++", +"+++++++++X+++o +++++++++", +"+++++++++ XO+Oo+++++++++", +"++++++++O o++++++++++++", +"+++++++++. o+++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Hibiscus/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..998685b --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/maximize-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #939393", +"X c gray58", +"o c #A0A0A0", +"O c #A4A4A4", +"+ c #A7A7A7", +"@ c LightGray", +"# c gray84", +"$ c gray85", +"% c gray87", +"& c #E2E2E2", +"* c #E4E4E4", +"= c #EEEEEE", +"- c #F3F3F3", +"; c gray96", +": c #FBFBFB", +"> c #FDFDFD", +/* pixels */ +"========================", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$%&$@@$&%$$$$$$$$", +"$$$$$$$*#&-::-*#*$$$$$$$", +"$$$$$$*#;>>>>>>-#*$$$$$$", +"$$$$$%#;>>>>>>>>;#%$$$$$", +"$$$$$&&>>>:o X>>&&$$$$$", +"$$$$$$->>:>:+ >>-$$$$$$", +"$$$$$@:>>o:::+ >>:@$$$$$", +"$$$$$@:>> o>>:o>>:@$$$$$", +"$$$$$$->> +:>>>>-$$$$$$", +"$$$$$&*>>. X>>>>&&$$$$$", +"$$$$$%#->>>>>>>>;#%$$$$$", +"$$$$$$&#->>>>>>;#&$$$$$$", +"$$$$$$$*#&-::-&#*$$$$$$$", +"$$$$$$$$%&$#@$&%$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Hibiscus/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..b076be7 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/maximize-pressed.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 13 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c LightGray", +"@ c gray84", +"# c gray85", +"$ c #DADADA", +"% c #E6E6E6", +"& c gray91", +"* c #EEEEEE", +"= c white", +/* pixels */ +"************************", +"########################", +"########################", +"########################", +"########################", +"########OX. .XO########", +"#######o o#######", +"######o o######", +"#####O O#####", +"#####X @==% X#####", +"#####. . @== .#####", +"##### #. += #####", +"##### =# @ #####", +"#####. ==@ .#####", +"#####X &==@. X#####", +"#####O O#####", +"######o o######", +"#######o o#######", +"########OX. .X+########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/menu-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/menu-active.xpm new file mode 100644 index 0000000..2400a36 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/menu-active.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #909090", +". c #979797", +"X c #9D9D9D", +"o c gray63", +"O c gray66", +"+ c #B9B9B9", +"@ c #BCBCBC", +"# c #CDCDCD", +"$ c #D7D7D7", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%@.@%%@.+%%%%%%%%", +"%%%%%%%%+ OO +%%%%%%%%", +"%%%%%%%%%@. .@%%%%%%%%%", +"%%%%%%%%%%#oX#%%%%%%%%%%", +"%%%%%%%%%%%$%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..f38b6e2 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray72", +"X c #BCBCBC", +"o c gray76", +"O c #CBCBCB", +"+ c #CDCDCD", +"@ c LightGray", +"# c #D5D5D5", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$O.O$$O.O$$$$$$$$", +"$$$$$$$$O oo O$$$$$$$$", +"$$$$$$$$$+.. +$$$$$$$$$", +"$$$$$$$$$$#XX@$$$$$$$$$$", +"$$$$$$$$$$$#$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Hibiscus/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..1951c18 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/menu-pressed.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c gray58", +"X c gray62", +"o c gray64", +"O c gray65", +"+ c #B6B6B6", +"@ c #B9B9B9", +"# c gray75", +"$ c #C0C0C0", +"% c gray81", +"& c #D0D0D0", +"* c #D7D7D7", +"= c gray85", +"- c #E6E6E6", +"; c #EEEEEE", +": c #F4F4F4", +"> c #F9F9F9", +", c white", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"========================", +"========================", +"========================", +"========================", +"========&O. O&========", +"=======+ +=======", +"======+ @======", +"=====& &=====", +"=====O O=====", +"=====. #:# @:# .=====", +"===== $,,=*,,$ =====", +"===== @>,,>@ =====", +"=====. X-;o =====", +"=====O . O=====", +"=====% &=====", +"======+ +======", +"=======+ +=======", +"========&O. .O&========", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/right-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/right-active.xpm new file mode 100644 index 0000000..bbfecc2 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/right-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/right-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/shade-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/shade-active.xpm new file mode 100644 index 0000000..798916e --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/shade-active.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #909090", +". c gray57", +"X c #989898", +"o c gray63", +"O c #A4A4A4", +"+ c #A9A9A9", +"@ c #B2B2B2", +"# c gray71", +"$ c gray", +"% c #C0C0C0", +"& c gray78", +"* c #C8C8C8", +"= c #D2D2D2", +"- c gray83", +"; c gray85", +": c #EEEEEE", +/* pixels */ +"::::::::::::::::::::::::", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;=+O=;;;;;;;;;;", +";;;;;;;;;*X .X*;;;;;;;;;", +";;;;;;;;%.. ...$;;;;;;;;", +";;;;;;;;#.@. #.@;;;;;;;;", +";;;;;;;;;=;. ;=;;;;;;;;;", +";;;;;;;;;;;. ;;;;;;;;;;;", +";;;;;;;;;;;..;;;;;;;;;;;", +";;;;;;;;;;;oo;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..7724327 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/shade-inactive.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray", +"O c #C0C0C0", +"+ c gray78", +"@ c gray80", +"# c #CDCDCD", +"$ c gray82", +"% c #D5D5D5", +"& c gray85", +"* c #EEEEEE", +/* pixels */ +"************************", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&%oO%&&&&&&&&&&", +"&&&&&&&&&$X.XX#&&&&&&&&&", +"&&&&&&&&#.....X@&&&&&&&&", +"&&&&&&&&+.+..+.+&&&&&&&&", +"&&&&&&&&&%&..&%&&&&&&&&&", +"&&&&&&&&&&&..$&&&&&&&&&&", +"&&&&&&&&&&&..&&&&&&&&&&&", +"&&&&&&&&&&&oo&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Hibiscus/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..96eb5a1 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/shade-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c gray62", +"+ c gray65", +"@ c #BBBBBB", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=&%%*=*********", +"*******=&;><<>;&=*******", +"******=&,111111>&=******", +"******&,11,+O><1,&******", +"*****=-11=X X*11-=*****", +"*****&>1%. .$1>******", +"*****&<1@ @ #.@1<%*****", +"*****%<1<<1 1,11<%*****", +"******>1111 1111>&*****", +"*****=;1111 1111-=*****", +"******&>111oo111>&******", +"******=&>111111>&=******", +"*******=&;><<>-&=*******", +"*********=&%%*=*********", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..b0c23b5 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #909090", +". c #989898", +"X c #A0A0A0", +"o c gray65", +"O c #A9A9A9", +"+ c #B2B2B2", +"@ c gray71", +"# c gray", +"$ c #C0C0C0", +"% c #C8C8C8", +"& c gray83", +"* c gray84", +"= c gray85", +"- c #EEEEEE", +/* pixels */ +"------------------------", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"===========XX===========", +"=========== ===========", +"=========== ===========", +"=========*= =*=========", +"========@ + @ @========", +"========# #========", +"=========%. .%=========", +"==========*Oo*==========", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..129b31b --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray73", +"X c gray", +"o c #C0C0C0", +"O c gray78", +"+ c gray80", +"@ c gray82", +"# c #D7D7D7", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$XX$$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $#$$$$$$$$$", +"$$$$$$$$O O O O$$$$$$$$", +"$$$$$$$$+ +$$$$$$$$", +"$$$$$$$$$@. .@$$$$$$$$$", +"$$$$$$$$$$$oo#$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..21aa1ef --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c #A2A2A2", +"+ c gray65", +"@ c gray73", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=*%%*=*********", +"*******=&-><<>;&=*******", +"******=&,111111>&=******", +"******&,111oo111,&******", +"*****=-1111 1111-=*****", +"*****&>1111 1111>&*****", +"*****&<11,1 <<11<%*****", +"*****%<1#.@ @.@1<%*****", +"******>1% .$1>******", +"*****=-1<=X X=<1-=*****", +"******&>11,+O>11,&******", +"******=&>111111,&=******", +"*******=&;><<>;&=*******", +"*********=&%%&=*&*******", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/stick-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/stick-active.xpm new file mode 100644 index 0000000..d051f7a --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/stick-active.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #939393", +". c gray59", +"X c #989898", +"o c gray62", +"O c #AFAFAF", +"+ c gray70", +"@ c #B4B4B4", +"# c #C1C1C1", +"$ c #C8C8C8", +"% c #CBCBCB", +"& c gray80", +"* c #D2D2D2", +"= c #D5D5D5", +"- c gray85", +"; c #EEEEEE", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"--------*+o o@*--------", +"-------#.O%==%O.#-------", +"------#X&------%X#------", +"-----*.&--------%.*-----", +"-----++----------O+-----", +"-----o%----------%o-----", +"----= =----------= -----", +"-----.=----------= -----", +"-----o%=---------%o-----", +"-----@O----------O@-----", +"-----*.%--------&.*-----", +"------#X%------%X#------", +"-------#.O%=*%O.#-------", +"--------*+o. o@=--------", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"------------------------" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..4031c8d --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/stick-inactive.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #B7B7B7", +". c gray73", +"X c gray74", +"o c gray78", +"O c #CECECE", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #EEEEEE", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O.o+#@+o.O#######", +"######O.+@#####+.O######", +"#####@.+########+.@#####", +"#####oo##########oo#####", +"#####.+##########+X#####", +"#####.###########@ #####", +"##### ###########@.#####", +"#####X+##########+X#####", +"#####oo##########oo#####", +"#####@.+########+.@#####", +"######O.+#####@+.O######", +"#######O o+@#+o.O#######", +"########@oX Xo@########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Hibiscus/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..52a81d0 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/stick-prelight.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c gray70", +". c #B4B4B4", +"X c #B9B9B9", +"o c #C3C3C3", +"O c LightGray", +"+ c gray85", +"@ c gray87", +"# c gray88", +"$ c #EEEEEE", +"% c gray96", +"& c #FDFDFD", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++OX . XO++++++++", +"+++++++o.X@%%+X o+++++++", +"++++++o #&&&&&&@.o++++++", +"+++++O.#&&&&&&&&@.O+++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++ +&&&&&&&&&&+ +++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++ @&&&&&&&&&&+ +++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++O.@&&&&&&&&@.O+++++", +"++++++o.@&&&&&&@.o++++++", +"+++++++o X+%%+X.o+++++++", +"++++++++OX ...XO++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..6e61192 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c #939393", +"X c gray59", +"o c #989898", +"O c gray62", +"+ c #A7A7A7", +"@ c gray66", +"# c #AFAFAF", +"$ c gray70", +"% c #B4B4B4", +"& c #C1C1C1", +"* c #C8C8C8", +"= c #CBCBCB", +"- c gray80", +"; c #D2D2D2", +": c #D5D5D5", +"> c gray85", +", c #EEEEEE", +/* pixels */ +",,,,,,,,,,,,,,,,,,,,,,,,", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>;$O..O%;>>>>>>>>", +">>>>>>>&X#=::=#X&>>>>>>>", +">>>>>>&o->>>>>>=o&>>>>>>", +">>>>>;X->;+X.+=>=X;>>>>>", +">>>>>$$>-X .;>#$>>>>>", +">>>>>O=:@ .+>=O>>>>>", +">>>>>.:>X. .>:.>>>>>", +">>>>>X:>. X>:X>>>>>", +">>>>>O=>+ +:=O>>>>>", +">>>>>%$>=X. .X;>#%>>>>>", +">>>>:;X->-+..+;:=X:>>>>>", +">>>>>>&X=>>>>>:-o&>>>>>>", +">>>>>>>&X#=:;=$X&>>>>>>>", +">>>>>>>>:$O..O%;>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..e9fdd0e --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray74", +"O c #C1C1C1", +"+ c gray78", +"@ c #CECECE", +"# c gray82", +"$ c gray84", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%@X+#%$#+X@%%%%%%%", +"%%%%%%@X#$%%%%%#X@%%%%%%", +"%%%%%$X#%$XX.o$%#X$%%%%%", +"%%%%%++%$X.....$%++%%%%%", +"%%%%%X#%O......O%#o%%%%%", +"%%%%%X%%........%$.%%%%%", +"%%%%%.%%. ... .%$X%%%%%", +"%%%%%o#%X......o%#o%%%%%", +"%%%%%++%$......#%++%%%%%", +"%%%%%$.#%$OX.O$%#X$%%%%%", +"%%%%%%@X#%%%%%$#X@%%%%%%", +"%%%%%%%@.+#$%#+X@%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..417902c --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #838383", +"X c gray64", +"o c #A4A4A4", +"O c gray70", +"+ c #B4B4B4", +"@ c #B9B9B9", +"# c #C3C3C3", +"$ c LightGray", +"% c gray85", +"& c gray87", +"* c gray88", +"= c #E9E9E9", +"- c #EEEEEE", +"; c #F3F3F3", +": c gray96", +"> c #FDFDFD", +/* pixels */ +"------------------------", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$@OO+O@$%%%%%%%%", +"%%%%%%%#+@&::%@O#%%%%%%%", +"%%%%%%#O*>>>>>>&+#%%%%%%", +"%%%%%$+&>-X. o=>&+$%%%%%", +"%%%%%@@>-. .;>@@%%%%%", +"%%%%%O&>o o>%O%%%%%", +"%%%%%O:>. .>:+%%%%%", +"%%%%%+:>. .>:+%%%%%", +"%%%%%+&>X o>%O%%%%%", +"%%%%%@+>=. .->@@%%%%%", +"%%%%%$+&>-X..o->&+$%%%%%", +"%%%%%%#O&>>>>>>&+#%%%%%%", +"%%%%%%%#O@%::%@+#%%%%%%%", +"%%%%%%%%$@O+++@$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/themerc b/themes/Mint-Y-Hibiscus/xfwm4/themerc new file mode 100644 index 0000000..4e3833f --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#787878 +#active_text_shadow_color=#e7e8eb +inactive_text_color=#9d9d9d +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-1-active-shaded.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-1-active-shaded.xpm new file mode 100644 index 0000000..662295d --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-1-active-shaded.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_shaded_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEFF1", +"+ c #E7E8EB", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-1-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..209bb16 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-2-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..a3cfe4a --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-3-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..f9df553 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-4-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..87e3fb4 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-5-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..48bee41 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/top-left-active-shaded.xpm b/themes/Mint-Y-Hibiscus/xfwm4/top-left-active-shaded.xpm new file mode 100644 index 0000000..47dc7df --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/top-left-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_left_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #E8E9EB", +"# c #E7E8EB", +" .+++", +".@###", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/top-left-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..ef737a9 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/top-left-active.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 7 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #DFDFE0", +"# c #DADADA", +"$ c #D9D9D9", +"% c #BFBFBF", +" .+++", +".@#$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Hibiscus/xfwm4/top-right-active-shaded.xpm b/themes/Mint-Y-Hibiscus/xfwm4/top-right-active-shaded.xpm new file mode 100644 index 0000000..4920284 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/top-right-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEFF1", +"+ c #ECEDF0", +"@ c #E7E8EB", +"# c #E8E9EB", +"...+ ", +"@@@#+", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/top-right-active.xpm b/themes/Mint-Y-Hibiscus/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..5b57971 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/top-right-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"@ c #DFDFE0", +"# c #BFBFBF", +".... ", +"+++@.", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#"}; diff --git a/themes/Mint-Y-Hibiscus/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Hibiscus/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Hibiscus/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Lightning/gtk-3.0/gtk.css b/themes/Mint-Y-Lightning/gtk-3.0/gtk.css index c5a8009..3532e1e 100644 --- a/themes/Mint-Y-Lightning/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Lightning/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #ffa31e; - background-color: rgba(255, 163, 30, 0.2); } + border: 1px solid #FFA726; + background-color: rgba(255, 167, 38, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Majestic/cinnamon/cinnamon.css b/themes/Mint-Y-Majestic/cinnamon/cinnamon.css new file mode 100644 index 0000000..9d00e41 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #4a4a4a; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #5f5f5f; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px #5f5f5f; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: rgba(74, 74, 74, 0.55); + border: 1px solid rgba(217, 217, 217, 0.55); + background-color: rgba(245, 245, 245, 0.55); + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #5f5f5f; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #cfd6e6; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: #f8f8f8; + border-color: 1px solid #dee2eb; + box-shadow: inset 0 2px 4px rgba(248, 248, 248, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #5f5f5f; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #5f5f5f; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #aeaeae; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #bebebe; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #5f5f5f; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #5f5f5f; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("light-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("light-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #5f5f5f; + text-decoration: underline; } + .cinnamon-link:hover { + color: #5f5f5f; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #4a4a4a; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #ffffff; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #4a4a4a; + border-color: rgba(74, 74, 74, 0.11); + background-color: rgba(74, 74, 74, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(74, 74, 74, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #4a4a4a; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(74, 74, 74, 0.55); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #F0F0F0; + -arrow-border-width: 1px; + -arrow-border-color: #d9d9d9; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #5f5f5f; + color: #ffffff; + border: 1px solid #5f5f5f; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #5f5f5f; + background-color: #5f5f5f; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #5f5f5f; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #5f5f5f; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #d9d9d9; + border-radius: 2px; + background-color: #ffffff; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #4a4a4a; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #4a4a4a; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(74, 74, 74, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(74, 74, 74, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #4a4a4a; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #5f5f5f; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(74, 74, 74, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(74, 74, 74, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #4a4a4a; } + .popup-menu #notification { + color: #4a4a4a; + border-image: url("light-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #4a4a4a; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #4a4a4a; + border: 1px solid #d9d9d9; + background-color: #F0F0F0; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #5f5f5f; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #5f5f5f; + border: 0px solid #5f5f5f; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #4a4a4a; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #F0F0F0; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #4a4a4a; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #5f5f5f; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid #d9d9d9; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + border: 1px solid #5f5f5f; + background-color: #5f5f5f; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #ffffff; + border: 1px solid #d9d9d9; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(74, 74, 74, 0.55); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #4a4a4a; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #4a4a4a; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #4a4a4a; + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #5f5f5f; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #5f5f5f; + border: 1px solid #5f5f5f; + box-shadow: inset 0 2px 4px #5f5f5f; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #5f5f5f; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #5f5f5f; } + .workspace-button:hover { + color: rgba(154, 184, 124, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #5f5f5f; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #5f5f5f; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #5f5f5f; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #4a4a4a; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #4a4a4a; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #d9d9d9; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #F0F0F0; + color: #4a4a4a; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #d9d9d9; + border-radius: 5px 5px 0 0; + background-color: #e8e8e8; + color: #4a4a4a; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #5f5f5f; + background-color: rgba(154, 184, 124, 0.3); } + +.photoframe-box { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #5f5f5f; } + .tile-preview.snap { + background-color: rgba(154, 184, 124, 0.6); } + +.tile-hud { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #5f5f5f; } + .tile-hud.snap { + background-color: rgba(154, 184, 124, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..17decf8 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#5f5f5f;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#5f5f5f;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..f726199 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..52d53ad --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..0a119cb --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..10893c3 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..bdda151 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..46d8f91 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..6ad747f --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..446de52 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..765e877 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/menu-hover.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/menu-hover.svg new file mode 100644 index 0000000..938245a --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/menu.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/menu.svg new file mode 100644 index 0000000..5ae7466 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/submenu.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/submenu.svg new file mode 100644 index 0000000..378f29b --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/button-box.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/button-box.svg new file mode 100644 index 0000000..036f0d1 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/button-box.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/message.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/message.svg new file mode 100644 index 0000000..53492bc --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/modal.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/modal.svg new file mode 100644 index 0000000..b61f537 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/switch/switch-off.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/switch/switch-off.svg new file mode 100644 index 0000000..7c4ad4d --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/light-assets/switch/switch-on.svg b/themes/Mint-Y-Majestic/cinnamon/light-assets/switch/switch-on.svg new file mode 100644 index 0000000..575d733 --- /dev/null +++ b/themes/Mint-Y-Majestic/cinnamon/light-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Majestic/cinnamon/thumbnail.png b/themes/Mint-Y-Majestic/cinnamon/thumbnail.png new file mode 100644 index 0000000..e278c10 Binary files /dev/null and b/themes/Mint-Y-Majestic/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/apps.rc b/themes/Mint-Y-Majestic/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Majestic/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/button.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..66b2b48 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..abb54e5 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..d6e3eae Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..9ed417a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..93ece7a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..8f915d9 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..14ba68f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..1edc125 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/frame.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..a228bd3 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..df99b26 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..5fc5ebe Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..ec6a86e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..21d23d9 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/minus.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..35ee23f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/null.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/plus.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..f4003e8 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..d42fbbc Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..7d87855 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..99b9ccd Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..9bf87e8 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..8974fd8 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..5b0a50a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/slider.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..2c19270 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..b09c7a2 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..7bb6d15 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/gtkrc b/themes/Mint-Y-Majestic/gtk-2.0/gtkrc new file mode 100644 index 0000000..cfdce6b --- /dev/null +++ b/themes/Mint-Y-Majestic/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfcfc\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#454545\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar.rc" diff --git a/themes/Mint-Y-Majestic/gtk-2.0/main.rc b/themes/Mint-Y-Majestic/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Majestic/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Majestic/gtk-2.0/panel.rc b/themes/Mint-Y-Majestic/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Majestic/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..4f834a1 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..393078b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..f45e683 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..161508e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..efe63d3 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..387177d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..5cf7249 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..291c118 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..b5f2d99 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..204aa4f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..c41c5f2 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..32272b7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..5ab4e40 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..32ace40 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..abb54e5 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..f23f253 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..5751894 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..64daf18 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..244148b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..9820b66 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..c37753a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..fbe2f85 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..b882262 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..08e100c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..7855f07 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..5b4c20d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..f5231aa Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..5dca039 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..43180e5 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..3bfc96e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..e0ef4ba Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..79fe504 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..729da6e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..0501e5e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..2ec2874 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..9b831ca Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..d955644 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..31a144b Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..99b9ccd Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..caf88bb Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..b12fa01 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..4bf25f2 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..f569767 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..84ba228 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..8c3fd92 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..35a0737 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..129edab Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..2c47b36 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..bb88f1d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..70e0153 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..03f2400 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..4085ebc Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..47e8bb0 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..f84fdff Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..d71a094 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..8df9ed7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..0af4c4a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..625343c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..beae9a7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..d6cd757 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..e680791 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..b5eef14 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..d95bfed Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..2a22860 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..b2fc09a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..5daa448 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..d95bfed Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..2a22860 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..96b4711 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..84fe73d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..0af4c4a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..625343c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..5bfff6f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..6cf7765 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..12ab70d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..2e2eb01 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..b467794 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..8c1695c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..b467794 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..8c1695c Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Majestic/gtk-3.0/gtk.css b/themes/Mint-Y-Majestic/gtk-3.0/gtk.css new file mode 100644 index 0000000..7da3adc --- /dev/null +++ b/themes/Mint-Y-Majestic/gtk-3.0/gtk.css @@ -0,0 +1,3781 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #464646; + -GtkWidget-visited-link-color: #2c2c2c; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5f5f5f; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #464646; + background-color: rgba(70, 70, 70, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5f5f5f; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #5f5f5f; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5f5f5f; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5f5f5f; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #5f5f5f); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5f5f5f), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5f5f5f), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(95, 95, 95, 0.75); + background-color: rgba(95, 95, 95, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #5f5f5f; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5f5f5f), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(95, 95, 95, 0.75); + background-color: rgba(95, 95, 95, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #5f5f5f; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #5f5f5f; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #5f5f5f; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #5f5f5f; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #5f5f5f; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #5f5f5f; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #464646; } + *:link:visited, .button:visited { + color: #2c2c2c; } + *:selected *:link:visited, *:selected .button:visited { + color: #bfbfbf; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #5f5f5f; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #efefef; } + *:link:active, .button:active:link, .button:active:visited { + color: #464646; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dfdfdf; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dfdfdf; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #5f5f5f; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5f5f5f; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #5f5f5f; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #5f5f5f; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #d9d9d9, #c7c7c7) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #c7c7c7; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; } + .csd .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #5f5f5f; + border-color: #555555; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #5f5f5f; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #5f5f5f; + outline-color: rgba(95, 95, 95, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(95, 95, 95, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #5f5f5f; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #d9d9d9; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #d9d9d9; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 4px 4px 0 0; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: inset 0 1px #e1e1e1; } + .csd .titlebar { + background-color: #d9d9d9; } + .titlebar:backdrop { + color: rgba(81, 67, 67, 0.6); + background-color: #e1e1e1; } + .csd .titlebar:backdrop { + background-color: #e1e1e1; } + .maximized .titlebar { + background-color: #d9d9d9; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #e1e1e1; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(81, 67, 67, 0) 25%, rgba(81, 67, 67, 0.25) 25%, rgba(81, 67, 67, 0.25) 75%, rgba(81, 67, 67, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(81, 67, 67, 0.75); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #5f5f5f; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5f5f5f; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #e89f77); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #ee7e78); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + outline-offset: -3px; + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #5f5f5f; + background-clip: border-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(95, 95, 95, 0.65); + background-color: rgba(95, 95, 95, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #5f5f5f; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #5f5f5f; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #5f5f5f; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(81, 67, 67, 0.9); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(81, 67, 67, 0.15); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(81, 67, 67, 0.6); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(81, 67, 67, 0.3); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: rgba(81, 67, 67, 0.9); + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #5f5f5f; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #5f5f5f; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(81, 67, 67, 0.25); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.25)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.2)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, whitesmoke); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, white); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #ededed); + border-color: rgba(81, 67, 67, 0.4); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #afafaf; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #9f9f9f; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #555555; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #cfcfcf; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #5f5f5f); } + GtkTreeView.view.progressbar:selected { + color: #5f5f5f; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #5f5f5f; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5f5f5f; + box-shadow: inset 1px 1px 0 1px #5f5f5f, inset -1px 0 0 1px #5f5f5f, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #d9d9d9; + color: rgba(81, 67, 67, 0.9); } + .menubar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5f5f5f; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(81, 67, 67, 0.3); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5f5f5f; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #5f5f5f; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #5f5f5f); + border-color: #5f5f5f; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #5f5f5f; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5f5f5f); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #464646); + border-color: #464646; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #e7e7e7); + border-color: #e7e7e7; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #afafaf); + border-color: #afafaf; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b7b7b7); + border-color: #b7b7b7; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5f5f5f); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(95, 95, 95, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5f5f5f); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b7b7b7); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5f5f5f; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5f5f5f; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #5f5f5f; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5f5f5f; + background-color: #5f5f5f; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #565656; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(95, 95, 95, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(95, 95, 95, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #d9d9d9; + border-bottom: 1px solid #c7c7c7; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #5f5f5f; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5f5f5f; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #5f5f5f; + outline-color: rgba(95, 95, 95, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(95, 95, 95, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(95, 95, 95, 0.2)), to(rgba(95, 95, 95, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(95, 95, 95, 0.2)), to(rgba(95, 95, 95, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(95, 95, 95, 0.2)), to(rgba(95, 95, 95, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(95, 95, 95, 0.2)), to(rgba(95, 95, 95, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 4px 4px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 4px 4px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #d9d9d9; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(217, 217, 217, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #5f5f5f; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max.png"), url("assets/titlebutton-max@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop.png"), url("assets/titlebutton-max-backdrop@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover.png"), url("assets/titlebutton-max-hover@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active.png"), url("assets/titlebutton-max-active@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min.png"), url("assets/titlebutton-min@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop.png"), url("assets/titlebutton-min-backdrop@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover.png"), url("assets/titlebutton-min-hover@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active.png"), url("assets/titlebutton-min-active@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #5f5f5f; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #c7c7c7, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #5f5f5f; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #5f5f5f; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dfdfdf; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(95, 95, 95, 0.8); + border-color: rgba(70, 70, 70, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #464646; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #5f5f5f; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } + +.gedit-headerbar-paned { + color: #c7c7c7; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5f5f5f; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: rgba(81, 67, 67, 0.9); + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: rgba(81, 67, 67, 0.9); + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(255, 255, 255, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(81, 67, 67, 0.5); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #929292; } + +.documents-entry-tag { + background-color: #5f5f5f; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: dimgray; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #555555; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #5f5f5f; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5f5f5f; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5f5f5f; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #5f5f5f; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #5f5f5f; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #5f5f5f; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5f5f5f; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #5f5f5f; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5f5f5f; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #5f5f5f; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #c7c7c7; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5f5f5f; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #c7c7c7; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5f5f5f; + border: solid #5f5f5f; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5f5f5f; + border: solid #5f5f5f; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5f5f5f; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #5f5f5f; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #5f5f5f); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #5f5f5f; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #5f5f5f; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#514343, 0.8); +@define-color wm_unfocused_title alpha(#514343, 0.5); +@define-color wm_bg #d9d9d9; +@define-color wm_bg_unfocused #e1e1e1; +@define-color wm_highlight #e1e1e1; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f46067; +@define-color wm_button_close_hover_bg #f68086; +@define-color wm_button_close_active_bg #f13039; +@define-color wm_icon_close_bg #F8F8F9; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #5f5f5f; +@define-color wm_button_hover_border #D1D3DA; +@define-color wm_icon_bg #90949E; +@define-color wm_icon_unfocused_bg #B6B8C0; +@define-color wm_icon_hover_bg #7A7F8B; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Majestic/gtk-3.0/thumbnail.png b/themes/Mint-Y-Majestic/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Majestic/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Majestic/index.theme b/themes/Mint-Y-Majestic/index.theme new file mode 100644 index 0000000..8520296 --- /dev/null +++ b/themes/Mint-Y-Majestic/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Majestic +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Majestic +MetacityTheme=Mint-Y-Majestic +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Majestic/metacity-1/button-bg.svg b/themes/Mint-Y-Majestic/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Majestic/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/metacity-1/button-border.svg b/themes/Mint-Y-Majestic/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Majestic/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/metacity-1/close-icon.svg b/themes/Mint-Y-Majestic/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Majestic/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/metacity-1/max-icon.svg b/themes/Mint-Y-Majestic/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Majestic/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Majestic/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..750a8eb --- /dev/null +++ b/themes/Mint-Y-Majestic/metacity-1/metacity-theme-2.xml @@ -0,0 +1,767 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Majestic/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Majestic/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..1411101 --- /dev/null +++ b/themes/Mint-Y-Majestic/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1040 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#787878" /> +<constant name="C_title_unfocused" value="#9d9d9d" /> + +<constant name="C_wm_bg_focused" value="#d9d9d9" /> +<constant name="C_wm_bg_unfocused" value="#d9d9d9" /> + +<constant name="C_wm_border" value="#d0d0d0" /> + +<constant name="C_wm_highlight" value="#eeeeee" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#5f5f5f)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#5f5f5f)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#5f5f5f)/0.8" /> + +<constant name="C_icon_close_bg" value="#F8F8F8" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#fdfdfd" /> +<constant name="C_button_bg_active" value="#909090" /> + +<constant name="C_button_border_hover" value="#D1D1D1" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#B6B6B6" /> +<constant name="C_icon_bg_hover" value="#7A7A7A" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_tiled_right"> + <line x1="0" y1="0" x2="0" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_tiled_left"> + <line x1="width-1" y1="0" x2="width-1" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Majestic/metacity-1/min-icon.svg b/themes/Mint-Y-Majestic/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Majestic/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/metacity-1/thumbnail.png b/themes/Mint-Y-Majestic/metacity-1/thumbnail.png new file mode 100644 index 0000000..54ef44a Binary files /dev/null and b/themes/Mint-Y-Majestic/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Majestic/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Majestic/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Majestic/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Majestic/xfwm4/bottom-active.xpm b/themes/Mint-Y-Majestic/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..1191a44 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/bottom-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +".", +".", +"+"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Majestic/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..727a097 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/bottom-left-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++", +".++", +"..."}; diff --git a/themes/Mint-Y-Majestic/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Majestic/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..0d6f9b5 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/bottom-right-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+", +"..+", +"+++"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/close-active.xpm b/themes/Mint-Y-Majestic/xfwm4/close-active.xpm new file mode 100644 index 0000000..f534cbf --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/close-active.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 30 1 ", +" c #9AB87C", +". c #9AB87D", +"X c #9CB97E", +"o c #9CB980", +"O c #9EBA82", +"+ c #A0BC83", +"@ c #A6BF8E", +"# c #A7BF8F", +"$ c #B9C8A9", +"% c #B9C9AA", +"& c #C4CEBA", +"* c #C5CEBB", +"= c #C9D9B9", +"- c #CCDBBD", +"; c #CFDDC1", +": c #D0DEC3", +"> c #D3D6D1", +", c #D4D6D1", +"< c #D4D6D2", +"1 c gray85", +"2 c #D5E1C9", +"3 c #D7E3CC", +"4 c #D8E3CC", +"5 c #D8E4CD", +"6 c #DCE6D2", +"7 c #EEEEEE", +"8 c #F4F7F2", +"9 c #FBFCFA", +"0 c gray99", +"q c #FDFDFD", +/* pixels */ +"777777777777777777777777", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"11111111,%@Xo@%>11111111", +"1111111&X. .o&1111111", +"111111&... ..X*111111", +"11111,X .+ o X,11111", +"11111%. .93XX30 $11111", +"11111@ -q540: . #11111", +"11111X -qq: .Xo11111", +"11111o. X4qq6X X11111", +"11111@.. 4q--q3 #11111", +"11111% 8= =8 . $11111", +"11111,X .+,11111", +"111111&X. .. &111111", +"1111111&+. XX&1111111", +"11111111,%#oX@%,11111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/close-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..5b4918b --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/close-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c gray71", +". c gray72", +"X c gray74", +"o c gray78", +"O c #CDCDCD", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #E9E9E9", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O. O#######", +"######O O######", +"#####@ . . @#####", +"#####o %# #% o#####", +"#####X +%##%+ X#####", +"##### +%%@ #####", +"#####. #%%# .#####", +"#####X #%++%# X#####", +"#####o $+ +$ o#####", +"#####@ .@#####", +"######O O######", +"#######+ O#######", +"########@oX Xo#########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/close-prelight.xpm b/themes/Mint-Y-Majestic/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..ad68f60 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/close-prelight.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 28 1 ", +" c #9ABC78", +". c #9ABC79", +"X c #9BBD79", +"o c #9CBD7A", +"O c #9CBD7C", +"+ c #9EBE7E", +"@ c #A0C07F", +"# c #A6C28B", +"$ c #A7C28B", +"% c #B9CAA7", +"& c #B9CBA8", +"* c #C5CFBA", +"= c #C9DBB7", +"- c #C4D0B9", +"; c #CCDDBB", +": c #CEDEBE", +"> c #D3D6D0", +", c #D4D6D1", +"< c gray85", +"1 c #D0E0C1", +"2 c #D5E3C7", +"3 c #D6E4C9", +"4 c #D8E5CB", +"5 c #D8E5CC", +"6 c #EEEEEE", +"7 c #F4F7F1", +"8 c #FBFCFA", +"9 c #FDFDFD", +/* pixels */ +"666666666666666666666666", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<,%#oO#&><<<<<<<<", +"<<<<<<<-o. .O*<<<<<<<", +"<<<<<<-... ..o*<<<<<<", +"<<<<<,o @ @ O,<<<<<", +"<<<<<&o .83o.28 &<<<<<", +"<<<<<# ;94491 . $<<<<<", +"<<<<<o :991 ..O<<<<<", +"<<<<<O. .o4894Oo O<<<<<", +"<<<<<#. 49;;94. $<<<<<", +"<<<<<& 7= =7. &<<<<<", +"<<<<<,o oO,<<<<<", +"<<<<<<* . *<<<<<<", +"<<<<<<<*Oo oO*<<<<<<<", +"<<<<<<<<,&$oo$&,<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/close-pressed.xpm b/themes/Mint-Y-Majestic/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..99b07f2 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/close-pressed.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 32 1 ", +" c #7BA056", +". c #7CA057", +"X c #7FA25B", +"o c #7FA25C", +"O c #80A35D", +"+ c #82A55F", +"@ c #83A660", +"# c #8CAB6E", +"$ c #8DAB6F", +"% c #8EAC70", +"& c #A9BC96", +"* c #A9BC97", +"= c #B9CCA5", +"- c #BAC6AE", +"; c #BBC7AE", +": c #BBC6AF", +"> c #BDCFAA", +", c #BFD1AE", +"< c #C1D2B0", +"1 c #C2D3B2", +"2 c #C8D7B9", +"3 c #CAD9BC", +"4 c #CCDABE", +"5 c #D1DEC5", +"6 c #D1D4CD", +"7 c #D2D5CF", +"8 c gray85", +"9 c #EEEEEE", +"0 c #F2F5EE", +"q c #FAFBFA", +"w c gray99", +"e c #FDFDFD", +/* pixels */ +"999999999999999999999999", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888886&$XX$&688888888", +"8888888-O O-8888888", +"888888-. o-888888", +"888886+ @ + o688888", +"88888& q3..2e &88888", +"88888# >e43e< %88888", +"88888X ,ee< o88888", +"88888X O3we5X X88888", +"88888$ 2e,<w2 %88888", +"88888& 0= =0 *88888", +"888886+ +788888", +"888888- .-888888", +"8888888-+. @:8888888", +"888888886&$XX$&688888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/hide-active.xpm b/themes/Mint-Y-Majestic/xfwm4/hide-active.xpm new file mode 100644 index 0000000..9a3913c --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #808080", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..8f9fee5 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #B6B6B6", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Majestic/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..520c42f --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/hide-prelight.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c gray48", +". c LightGray", +"X c gray84", +"o c gray85", +"O c #DFDFDF", +"+ c gray89", +"@ c #E4E4E4", +"# c #EEEEEE", +"$ c #F3F3F3", +"% c gray96", +"& c #FBFBFB", +"* c #FDFDFD", +/* pixels */ +"########################", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooOo..oOooooooooo", +"oooooooOX+$&&$@XOooooooo", +"ooooooOX%******$XOoooooo", +"ooooooX%********%Xoooooo", +"oooooO+**********+Oooooo", +"oooooX$**********$oooooo", +"oooooX&** **&.ooooo", +"ooooo.&** **&.ooooo", +"oooooo$**********$Xooooo", +"oooooO+**********+Oooooo", +"ooooooX%********$Xoooooo", +"ooooooOX$******$XOoooooo", +"oooooooOX@$&&$+XOooooooo", +"oooooooooOX..oOooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Majestic/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..8d7bd13 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/hide-pressed.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c #CECECE", +"@ c gray85", +"# c #EEEEEE", +"$ c white", +/* pixels */ +"########################", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@O O@@@@@", +"@@@@@X X@@@@@", +"@@@@@. .@@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@. .@@@@@", +"@@@@@X X@@@@@", +"@@@@@O O@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/left-active.xpm b/themes/Mint-Y-Majestic/xfwm4/left-active.xpm new file mode 100644 index 0000000..f42db54 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/left-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/left-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/maximize-active.xpm b/themes/Mint-Y-Majestic/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..de718db --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/maximize-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #909090", +". c #9F9F9F", +"X c gray65", +"o c #A9A9A9", +"O c #D7D7D7", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++X .+++++++++", +"+++++++++O++o +++++++++", +"+++++++++XO+Oo +++++++++", +"++++++++O X++Oo+++++++++", +"+++++++++ X++++++++++++", +"+++++++++. oO++++++++++", +"+++++++++O++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..8dcab42 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/maximize-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #B6B6B6", +". c #BCBCBC", +"X c gray74", +"o c gray76", +"O c #D8D8D8", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++o X+++++++++", +"++++++++++++o +++++++++", +"+++++++++X+++o +++++++++", +"+++++++++ XO+Oo+++++++++", +"++++++++O o++++++++++++", +"+++++++++. o+++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Majestic/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..998685b --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/maximize-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #939393", +"X c gray58", +"o c #A0A0A0", +"O c #A4A4A4", +"+ c #A7A7A7", +"@ c LightGray", +"# c gray84", +"$ c gray85", +"% c gray87", +"& c #E2E2E2", +"* c #E4E4E4", +"= c #EEEEEE", +"- c #F3F3F3", +"; c gray96", +": c #FBFBFB", +"> c #FDFDFD", +/* pixels */ +"========================", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$%&$@@$&%$$$$$$$$", +"$$$$$$$*#&-::-*#*$$$$$$$", +"$$$$$$*#;>>>>>>-#*$$$$$$", +"$$$$$%#;>>>>>>>>;#%$$$$$", +"$$$$$&&>>>:o X>>&&$$$$$", +"$$$$$$->>:>:+ >>-$$$$$$", +"$$$$$@:>>o:::+ >>:@$$$$$", +"$$$$$@:>> o>>:o>>:@$$$$$", +"$$$$$$->> +:>>>>-$$$$$$", +"$$$$$&*>>. X>>>>&&$$$$$", +"$$$$$%#->>>>>>>>;#%$$$$$", +"$$$$$$&#->>>>>>;#&$$$$$$", +"$$$$$$$*#&-::-&#*$$$$$$$", +"$$$$$$$$%&$#@$&%$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Majestic/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..b076be7 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/maximize-pressed.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 13 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c LightGray", +"@ c gray84", +"# c gray85", +"$ c #DADADA", +"% c #E6E6E6", +"& c gray91", +"* c #EEEEEE", +"= c white", +/* pixels */ +"************************", +"########################", +"########################", +"########################", +"########################", +"########OX. .XO########", +"#######o o#######", +"######o o######", +"#####O O#####", +"#####X @==% X#####", +"#####. . @== .#####", +"##### #. += #####", +"##### =# @ #####", +"#####. ==@ .#####", +"#####X &==@. X#####", +"#####O O#####", +"######o o######", +"#######o o#######", +"########OX. .X+########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/menu-active.xpm b/themes/Mint-Y-Majestic/xfwm4/menu-active.xpm new file mode 100644 index 0000000..2400a36 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/menu-active.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #909090", +". c #979797", +"X c #9D9D9D", +"o c gray63", +"O c gray66", +"+ c #B9B9B9", +"@ c #BCBCBC", +"# c #CDCDCD", +"$ c #D7D7D7", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%@.@%%@.+%%%%%%%%", +"%%%%%%%%+ OO +%%%%%%%%", +"%%%%%%%%%@. .@%%%%%%%%%", +"%%%%%%%%%%#oX#%%%%%%%%%%", +"%%%%%%%%%%%$%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..f38b6e2 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray72", +"X c #BCBCBC", +"o c gray76", +"O c #CBCBCB", +"+ c #CDCDCD", +"@ c LightGray", +"# c #D5D5D5", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$O.O$$O.O$$$$$$$$", +"$$$$$$$$O oo O$$$$$$$$", +"$$$$$$$$$+.. +$$$$$$$$$", +"$$$$$$$$$$#XX@$$$$$$$$$$", +"$$$$$$$$$$$#$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Majestic/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..1951c18 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/menu-pressed.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c gray58", +"X c gray62", +"o c gray64", +"O c gray65", +"+ c #B6B6B6", +"@ c #B9B9B9", +"# c gray75", +"$ c #C0C0C0", +"% c gray81", +"& c #D0D0D0", +"* c #D7D7D7", +"= c gray85", +"- c #E6E6E6", +"; c #EEEEEE", +": c #F4F4F4", +"> c #F9F9F9", +", c white", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"========================", +"========================", +"========================", +"========================", +"========&O. O&========", +"=======+ +=======", +"======+ @======", +"=====& &=====", +"=====O O=====", +"=====. #:# @:# .=====", +"===== $,,=*,,$ =====", +"===== @>,,>@ =====", +"=====. X-;o =====", +"=====O . O=====", +"=====% &=====", +"======+ +======", +"=======+ +=======", +"========&O. .O&========", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/right-active.xpm b/themes/Mint-Y-Majestic/xfwm4/right-active.xpm new file mode 100644 index 0000000..bbfecc2 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/right-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/right-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/shade-active.xpm b/themes/Mint-Y-Majestic/xfwm4/shade-active.xpm new file mode 100644 index 0000000..798916e --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/shade-active.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #909090", +". c gray57", +"X c #989898", +"o c gray63", +"O c #A4A4A4", +"+ c #A9A9A9", +"@ c #B2B2B2", +"# c gray71", +"$ c gray", +"% c #C0C0C0", +"& c gray78", +"* c #C8C8C8", +"= c #D2D2D2", +"- c gray83", +"; c gray85", +": c #EEEEEE", +/* pixels */ +"::::::::::::::::::::::::", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;=+O=;;;;;;;;;;", +";;;;;;;;;*X .X*;;;;;;;;;", +";;;;;;;;%.. ...$;;;;;;;;", +";;;;;;;;#.@. #.@;;;;;;;;", +";;;;;;;;;=;. ;=;;;;;;;;;", +";;;;;;;;;;;. ;;;;;;;;;;;", +";;;;;;;;;;;..;;;;;;;;;;;", +";;;;;;;;;;;oo;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..7724327 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/shade-inactive.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray", +"O c #C0C0C0", +"+ c gray78", +"@ c gray80", +"# c #CDCDCD", +"$ c gray82", +"% c #D5D5D5", +"& c gray85", +"* c #EEEEEE", +/* pixels */ +"************************", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&%oO%&&&&&&&&&&", +"&&&&&&&&&$X.XX#&&&&&&&&&", +"&&&&&&&&#.....X@&&&&&&&&", +"&&&&&&&&+.+..+.+&&&&&&&&", +"&&&&&&&&&%&..&%&&&&&&&&&", +"&&&&&&&&&&&..$&&&&&&&&&&", +"&&&&&&&&&&&..&&&&&&&&&&&", +"&&&&&&&&&&&oo&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Majestic/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..96eb5a1 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/shade-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c gray62", +"+ c gray65", +"@ c #BBBBBB", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=&%%*=*********", +"*******=&;><<>;&=*******", +"******=&,111111>&=******", +"******&,11,+O><1,&******", +"*****=-11=X X*11-=*****", +"*****&>1%. .$1>******", +"*****&<1@ @ #.@1<%*****", +"*****%<1<<1 1,11<%*****", +"******>1111 1111>&*****", +"*****=;1111 1111-=*****", +"******&>111oo111>&******", +"******=&>111111>&=******", +"*******=&;><<>-&=*******", +"*********=&%%*=*********", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Majestic/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..b0c23b5 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #909090", +". c #989898", +"X c #A0A0A0", +"o c gray65", +"O c #A9A9A9", +"+ c #B2B2B2", +"@ c gray71", +"# c gray", +"$ c #C0C0C0", +"% c #C8C8C8", +"& c gray83", +"* c gray84", +"= c gray85", +"- c #EEEEEE", +/* pixels */ +"------------------------", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"===========XX===========", +"=========== ===========", +"=========== ===========", +"=========*= =*=========", +"========@ + @ @========", +"========# #========", +"=========%. .%=========", +"==========*Oo*==========", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..129b31b --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray73", +"X c gray", +"o c #C0C0C0", +"O c gray78", +"+ c gray80", +"@ c gray82", +"# c #D7D7D7", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$XX$$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $#$$$$$$$$$", +"$$$$$$$$O O O O$$$$$$$$", +"$$$$$$$$+ +$$$$$$$$", +"$$$$$$$$$@. .@$$$$$$$$$", +"$$$$$$$$$$$oo#$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Majestic/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..21aa1ef --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c #A2A2A2", +"+ c gray65", +"@ c gray73", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=*%%*=*********", +"*******=&-><<>;&=*******", +"******=&,111111>&=******", +"******&,111oo111,&******", +"*****=-1111 1111-=*****", +"*****&>1111 1111>&*****", +"*****&<11,1 <<11<%*****", +"*****%<1#.@ @.@1<%*****", +"******>1% .$1>******", +"*****=-1<=X X=<1-=*****", +"******&>11,+O>11,&******", +"******=&>111111,&=******", +"*******=&;><<>;&=*******", +"*********=&%%&=*&*******", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/stick-active.xpm b/themes/Mint-Y-Majestic/xfwm4/stick-active.xpm new file mode 100644 index 0000000..d051f7a --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/stick-active.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #939393", +". c gray59", +"X c #989898", +"o c gray62", +"O c #AFAFAF", +"+ c gray70", +"@ c #B4B4B4", +"# c #C1C1C1", +"$ c #C8C8C8", +"% c #CBCBCB", +"& c gray80", +"* c #D2D2D2", +"= c #D5D5D5", +"- c gray85", +"; c #EEEEEE", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"--------*+o o@*--------", +"-------#.O%==%O.#-------", +"------#X&------%X#------", +"-----*.&--------%.*-----", +"-----++----------O+-----", +"-----o%----------%o-----", +"----= =----------= -----", +"-----.=----------= -----", +"-----o%=---------%o-----", +"-----@O----------O@-----", +"-----*.%--------&.*-----", +"------#X%------%X#------", +"-------#.O%=*%O.#-------", +"--------*+o. o@=--------", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"------------------------" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..4031c8d --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/stick-inactive.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #B7B7B7", +". c gray73", +"X c gray74", +"o c gray78", +"O c #CECECE", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #EEEEEE", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O.o+#@+o.O#######", +"######O.+@#####+.O######", +"#####@.+########+.@#####", +"#####oo##########oo#####", +"#####.+##########+X#####", +"#####.###########@ #####", +"##### ###########@.#####", +"#####X+##########+X#####", +"#####oo##########oo#####", +"#####@.+########+.@#####", +"######O.+#####@+.O######", +"#######O o+@#+o.O#######", +"########@oX Xo@########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Majestic/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..52a81d0 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/stick-prelight.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c gray70", +". c #B4B4B4", +"X c #B9B9B9", +"o c #C3C3C3", +"O c LightGray", +"+ c gray85", +"@ c gray87", +"# c gray88", +"$ c #EEEEEE", +"% c gray96", +"& c #FDFDFD", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++OX . XO++++++++", +"+++++++o.X@%%+X o+++++++", +"++++++o #&&&&&&@.o++++++", +"+++++O.#&&&&&&&&@.O+++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++ +&&&&&&&&&&+ +++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++ @&&&&&&&&&&+ +++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++O.@&&&&&&&&@.O+++++", +"++++++o.@&&&&&&@.o++++++", +"+++++++o X+%%+X.o+++++++", +"++++++++OX ...XO++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Majestic/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..6e61192 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c #939393", +"X c gray59", +"o c #989898", +"O c gray62", +"+ c #A7A7A7", +"@ c gray66", +"# c #AFAFAF", +"$ c gray70", +"% c #B4B4B4", +"& c #C1C1C1", +"* c #C8C8C8", +"= c #CBCBCB", +"- c gray80", +"; c #D2D2D2", +": c #D5D5D5", +"> c gray85", +", c #EEEEEE", +/* pixels */ +",,,,,,,,,,,,,,,,,,,,,,,,", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>;$O..O%;>>>>>>>>", +">>>>>>>&X#=::=#X&>>>>>>>", +">>>>>>&o->>>>>>=o&>>>>>>", +">>>>>;X->;+X.+=>=X;>>>>>", +">>>>>$$>-X .;>#$>>>>>", +">>>>>O=:@ .+>=O>>>>>", +">>>>>.:>X. .>:.>>>>>", +">>>>>X:>. X>:X>>>>>", +">>>>>O=>+ +:=O>>>>>", +">>>>>%$>=X. .X;>#%>>>>>", +">>>>:;X->-+..+;:=X:>>>>>", +">>>>>>&X=>>>>>:-o&>>>>>>", +">>>>>>>&X#=:;=$X&>>>>>>>", +">>>>>>>>:$O..O%;>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..e9fdd0e --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray74", +"O c #C1C1C1", +"+ c gray78", +"@ c #CECECE", +"# c gray82", +"$ c gray84", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%@X+#%$#+X@%%%%%%%", +"%%%%%%@X#$%%%%%#X@%%%%%%", +"%%%%%$X#%$XX.o$%#X$%%%%%", +"%%%%%++%$X.....$%++%%%%%", +"%%%%%X#%O......O%#o%%%%%", +"%%%%%X%%........%$.%%%%%", +"%%%%%.%%. ... .%$X%%%%%", +"%%%%%o#%X......o%#o%%%%%", +"%%%%%++%$......#%++%%%%%", +"%%%%%$.#%$OX.O$%#X$%%%%%", +"%%%%%%@X#%%%%%$#X@%%%%%%", +"%%%%%%%@.+#$%#+X@%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Majestic/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..417902c --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #838383", +"X c gray64", +"o c #A4A4A4", +"O c gray70", +"+ c #B4B4B4", +"@ c #B9B9B9", +"# c #C3C3C3", +"$ c LightGray", +"% c gray85", +"& c gray87", +"* c gray88", +"= c #E9E9E9", +"- c #EEEEEE", +"; c #F3F3F3", +": c gray96", +"> c #FDFDFD", +/* pixels */ +"------------------------", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$@OO+O@$%%%%%%%%", +"%%%%%%%#+@&::%@O#%%%%%%%", +"%%%%%%#O*>>>>>>&+#%%%%%%", +"%%%%%$+&>-X. o=>&+$%%%%%", +"%%%%%@@>-. .;>@@%%%%%", +"%%%%%O&>o o>%O%%%%%", +"%%%%%O:>. .>:+%%%%%", +"%%%%%+:>. .>:+%%%%%", +"%%%%%+&>X o>%O%%%%%", +"%%%%%@+>=. .->@@%%%%%", +"%%%%%$+&>-X..o->&+$%%%%%", +"%%%%%%#O&>>>>>>&+#%%%%%%", +"%%%%%%%#O@%::%@+#%%%%%%%", +"%%%%%%%%$@O+++@$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Majestic/xfwm4/themerc b/themes/Mint-Y-Majestic/xfwm4/themerc new file mode 100644 index 0000000..4e3833f --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#787878 +#active_text_shadow_color=#e7e8eb +inactive_text_color=#9d9d9d +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Majestic/xfwm4/title-1-active-shaded.xpm b/themes/Mint-Y-Majestic/xfwm4/title-1-active-shaded.xpm new file mode 100644 index 0000000..662295d --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-1-active-shaded.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_shaded_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEFF1", +"+ c #E7E8EB", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/title-1-active.xpm b/themes/Mint-Y-Majestic/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..209bb16 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/title-2-active.xpm b/themes/Mint-Y-Majestic/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..a3cfe4a --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/title-3-active.xpm b/themes/Mint-Y-Majestic/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..f9df553 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/title-4-active.xpm b/themes/Mint-Y-Majestic/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..87e3fb4 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/title-5-active.xpm b/themes/Mint-Y-Majestic/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..48bee41 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/top-left-active-shaded.xpm b/themes/Mint-Y-Majestic/xfwm4/top-left-active-shaded.xpm new file mode 100644 index 0000000..47dc7df --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/top-left-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_left_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #E8E9EB", +"# c #E7E8EB", +" .+++", +".@###", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/top-left-active.xpm b/themes/Mint-Y-Majestic/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..ef737a9 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/top-left-active.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 7 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #DFDFE0", +"# c #DADADA", +"$ c #D9D9D9", +"% c #BFBFBF", +" .+++", +".@#$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Majestic/xfwm4/top-right-active-shaded.xpm b/themes/Mint-Y-Majestic/xfwm4/top-right-active-shaded.xpm new file mode 100644 index 0000000..4920284 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/top-right-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEFF1", +"+ c #ECEDF0", +"@ c #E7E8EB", +"# c #E8E9EB", +"...+ ", +"@@@#+", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/top-right-active.xpm b/themes/Mint-Y-Majestic/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..5b57971 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/top-right-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"@ c #DFDFE0", +"# c #BFBFBF", +".... ", +"+++@.", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#"}; diff --git a/themes/Mint-Y-Majestic/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Majestic/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Majestic/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/cinnamon/cinnamon.css b/themes/Mint-Y-Moka/cinnamon/cinnamon.css new file mode 100644 index 0000000..cd601df --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #4a4a4a; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #e1d5e5; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px #e1d5e5; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: rgba(74, 74, 74, 0.55); + border: 1px solid rgba(217, 217, 217, 0.55); + background-color: rgba(245, 245, 245, 0.55); + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #e1d5e5; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #cfd6e6; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: #f8f8f8; + border-color: 1px solid #dee2eb; + box-shadow: inset 0 2px 4px rgba(248, 248, 248, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #e1d5e5; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #e1d5e5; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #aeaeae; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #bebebe; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #e1d5e5; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #e1d5e5; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("light-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("light-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #e1d5e5; + text-decoration: underline; } + .cinnamon-link:hover { + color: #e1d5e5; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #4a4a4a; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #ffffff; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #4a4a4a; + border-color: rgba(74, 74, 74, 0.11); + background-color: rgba(74, 74, 74, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(74, 74, 74, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #4a4a4a; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(74, 74, 74, 0.55); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #F0F0F0; + -arrow-border-width: 1px; + -arrow-border-color: #d9d9d9; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #e1d5e5; + color: #ffffff; + border: 1px solid #e1d5e5; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #e1d5e5; + background-color: #e1d5e5; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #e1d5e5; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #e1d5e5; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #d9d9d9; + border-radius: 2px; + background-color: #ffffff; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #4a4a4a; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #4a4a4a; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(74, 74, 74, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(74, 74, 74, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #4a4a4a; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #e1d5e5; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(74, 74, 74, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(74, 74, 74, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #4a4a4a; } + .popup-menu #notification { + color: #4a4a4a; + border-image: url("light-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #4a4a4a; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #4a4a4a; + border: 1px solid #d9d9d9; + background-color: #F0F0F0; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #e1d5e5; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #e1d5e5; + border: 0px solid #e1d5e5; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #4a4a4a; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #F0F0F0; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #4a4a4a; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #e1d5e5; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid #d9d9d9; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + border: 1px solid #e1d5e5; + background-color: #e1d5e5; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #ffffff; + border: 1px solid #d9d9d9; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(74, 74, 74, 0.55); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #4a4a4a; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #4a4a4a; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #4a4a4a; + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #e1d5e5; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #e1d5e5; + border: 1px solid #e1d5e5; + box-shadow: inset 0 2px 4px #e1d5e5; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #e1d5e5; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #e1d5e5; } + .workspace-button:hover { + color: rgba(154, 184, 124, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #e1d5e5; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #e1d5e5; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #e1d5e5; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #4a4a4a; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #4a4a4a; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #d9d9d9; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #F0F0F0; + color: #4a4a4a; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #d9d9d9; + border-radius: 5px 5px 0 0; + background-color: #e8e8e8; + color: #4a4a4a; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #e1d5e5; + background-color: rgba(154, 184, 124, 0.3); } + +.photoframe-box { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #e1d5e5; } + .tile-preview.snap { + background-color: rgba(154, 184, 124, 0.6); } + +.tile-hud { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #e1d5e5; } + .tile-hud.snap { + background-color: rgba(154, 184, 124, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..e5ec85a --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#e1d5e5;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#e1d5e5;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..d2f9c7a --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..b6fd461 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..16a784f --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..ad93e38 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..6a72b8a --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..f649016 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..7ded4e2 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..76c5c30 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..765e877 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/menu/menu-hover.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/menu/menu-hover.svg new file mode 100644 index 0000000..938245a --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/menu/menu.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/menu/menu.svg new file mode 100644 index 0000000..5ae7466 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/menu/submenu.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/menu/submenu.svg new file mode 100644 index 0000000..378f29b --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/misc/button-box.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/misc/button-box.svg new file mode 100644 index 0000000..036f0d1 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/misc/button-box.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/misc/message.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/misc/message.svg new file mode 100644 index 0000000..0f54bff --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/misc/modal.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/misc/modal.svg new file mode 100644 index 0000000..b61f537 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/switch/switch-off.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/switch/switch-off.svg new file mode 100644 index 0000000..7c4ad4d --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/light-assets/switch/switch-on.svg b/themes/Mint-Y-Moka/cinnamon/light-assets/switch/switch-on.svg new file mode 100644 index 0000000..6a1ea83 --- /dev/null +++ b/themes/Mint-Y-Moka/cinnamon/light-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Moka/cinnamon/thumbnail.png b/themes/Mint-Y-Moka/cinnamon/thumbnail.png new file mode 100644 index 0000000..e278c10 Binary files /dev/null and b/themes/Mint-Y-Moka/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/apps.rc b/themes/Mint-Y-Moka/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Moka/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Moka/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/button.png b/themes/Mint-Y-Moka/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..601821e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..87d4508 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..0acd082 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..dcf1678 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..e2c38f4 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..f8dae93 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Moka/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..d20b543 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..2c091c9 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Moka/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Moka/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Moka/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/frame.png b/themes/Mint-Y-Moka/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Moka/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Moka/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Moka/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Moka/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Moka/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..bb3dda2 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..a65ef96 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..f2e72b0 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..b04caf3 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..d3d7aec Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Moka/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/minus.png b/themes/Mint-Y-Moka/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..c2c63a5 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/null.png b/themes/Mint-Y-Moka/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/plus.png b/themes/Mint-Y-Moka/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Moka/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..3b6a315 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Moka/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..4bf8de4 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..61f850b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Moka/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..594ea7d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Moka/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..f44a5fc Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..8c7b8f1 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..195890c Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/slider.png b/themes/Mint-Y-Moka/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..a21b55c Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Moka/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..2275727 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..3da2ccc Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Moka/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/gtkrc b/themes/Mint-Y-Moka/gtk-2.0/gtkrc new file mode 100644 index 0000000..cfdce6b --- /dev/null +++ b/themes/Mint-Y-Moka/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfcfc\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#454545\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar.rc" diff --git a/themes/Mint-Y-Moka/gtk-2.0/main.rc b/themes/Mint-Y-Moka/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Moka/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Moka/gtk-2.0/panel.rc b/themes/Mint-Y-Moka/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Moka/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..f8c791e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..6905658 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..1c5fade Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..1b57c5f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..ad08972 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..d2f4f46 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..7b9d14e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..2388368 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..28eb4f8 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..c077b91 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..6376575 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..b530444 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..a8b2196 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..aebdc87 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..87d4508 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..542d6bd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..e1b4e53 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..fd18b62 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..bf5bc2c Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..2ee1876 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..7d1b7c1 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..6774ef7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..fd37c5d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..32cba5a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..0880fb5 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..458fac3 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..cda3817 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..c09e6af Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..89603a4 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..3bce158 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..ac63c8f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..ad15855 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..2cf56f6 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..0d9f2ae Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..99c0a35 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..515cfa8 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..9a569dd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..1a56c33 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..594ea7d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..7257257 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..c3f4c3b Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..57b3b64 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..0fb1ba2 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..afd068e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..08c13f0 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..0272809 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..dbe5505 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..31391c2 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..94c467a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..902acdc Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..f7d8cd4 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..e329a8d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..f49ee4e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..c989a83 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..12aa37a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..c1fb0dd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..6cf7efd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..8b7043d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..1680cdd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..c7ded8c Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..d6ebdef Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..ee83523 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..a7e27df Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..efa97f8 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..e46cfd5 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..3a286bb Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..a7e27df Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..efa97f8 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..7492a0d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..dcbc0b0 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..6cf7efd Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..8b7043d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..5028dbc Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..f092f68 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..eee949a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..e03c811 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..b6bb341 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..4b1271a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..b6bb341 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..4b1271a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Moka/gtk-3.0/gtk.css b/themes/Mint-Y-Moka/gtk-3.0/gtk.css new file mode 100644 index 0000000..91c508a --- /dev/null +++ b/themes/Mint-Y-Moka/gtk-3.0/gtk.css @@ -0,0 +1,3781 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #cbb6d2; + -GtkWidget-visited-link-color: #b496be; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #e1d5e5; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #cbb6d2; + background-color: rgba(203, 182, 210, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #e1d5e5; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #e1d5e5; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #e1d5e5; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #e1d5e5; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #e1d5e5); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#e1d5e5), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e1d5e5), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(225, 213, 229, 0.75); + background-color: rgba(225, 213, 229, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #e1d5e5; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e1d5e5), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(225, 213, 229, 0.75); + background-color: rgba(225, 213, 229, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #e1d5e5; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #e1d5e5; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #e1d5e5; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #e1d5e5; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #e1d5e5; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #e1d5e5; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #cbb6d2; } + *:link:visited, .button:visited { + color: #b496be; } + *:selected *:link:visited, *:selected .button:visited { + color: #f3eef5; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #e1d5e5; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #fcfbfc; } + *:link:active, .button:active:link, .button:active:visited { + color: #cbb6d2; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #f9f7fa; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #f9f7fa; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #e1d5e5; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #e1d5e5; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #e1d5e5; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #e1d5e5; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #d9d9d9, #c7c7c7) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #c7c7c7; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; } + .csd .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #e1d5e5; + border-color: #d8c8dd; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #e1d5e5; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #e1d5e5; + outline-color: rgba(225, 213, 229, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(225, 213, 229, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #e1d5e5; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #d9d9d9; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #d9d9d9; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 4px 4px 0 0; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: inset 0 1px #e1e1e1; } + .csd .titlebar { + background-color: #d9d9d9; } + .titlebar:backdrop { + color: rgba(81, 67, 67, 0.6); + background-color: #e1e1e1; } + .csd .titlebar:backdrop { + background-color: #e1e1e1; } + .maximized .titlebar { + background-color: #d9d9d9; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #e1e1e1; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(81, 67, 67, 0) 25%, rgba(81, 67, 67, 0.25) 25%, rgba(81, 67, 67, 0.25) 75%, rgba(81, 67, 67, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(81, 67, 67, 0.75); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #e1d5e5; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #e1d5e5; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #e89f77); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #ee7e78); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + outline-offset: -3px; + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #e1d5e5; + background-clip: border-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(225, 213, 229, 0.65); + background-color: rgba(225, 213, 229, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #e1d5e5; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #e1d5e5; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #e1d5e5; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(81, 67, 67, 0.9); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(81, 67, 67, 0.15); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(81, 67, 67, 0.6); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(81, 67, 67, 0.3); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: rgba(81, 67, 67, 0.9); + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #e1d5e5; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #e1d5e5; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(81, 67, 67, 0.25); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.25)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.2)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, whitesmoke); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, white); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #ededed); + border-color: rgba(81, 67, 67, 0.4); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #f0eaf2; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #ede6ef; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #969098; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #f6f2f7; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #e1d5e5); } + GtkTreeView.view.progressbar:selected { + color: #e1d5e5; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #e1d5e5; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #e1d5e5; + box-shadow: inset 1px 1px 0 1px #e1d5e5, inset -1px 0 0 1px #e1d5e5, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #d9d9d9; + color: rgba(81, 67, 67, 0.9); } + .menubar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #e1d5e5; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(81, 67, 67, 0.3); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #e1d5e5; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #e1d5e5; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #e1d5e5); + border-color: #e1d5e5; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #e1d5e5; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #e1d5e5); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #cbb6d2); + border-color: #cbb6d2; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #fbf9fb); + border-color: #fbf9fb; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #f0eaf2); + border-color: #f0eaf2; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f2ecf3); + border-color: #f2ecf3; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #e1d5e5); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(225, 213, 229, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #e1d5e5); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #f2ecf3); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #e1d5e5; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #e1d5e5; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #e1d5e5; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #e1d5e5; + background-color: #e1d5e5; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #cbc0ce; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(225, 213, 229, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(225, 213, 229, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #d9d9d9; + border-bottom: 1px solid #c7c7c7; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #e1d5e5; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #e1d5e5; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #e1d5e5; + outline-color: rgba(225, 213, 229, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(225, 213, 229, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(225, 213, 229, 0.2)), to(rgba(225, 213, 229, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(225, 213, 229, 0.2)), to(rgba(225, 213, 229, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(225, 213, 229, 0.2)), to(rgba(225, 213, 229, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(225, 213, 229, 0.2)), to(rgba(225, 213, 229, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 4px 4px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 4px 4px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #d9d9d9; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(217, 217, 217, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #e1d5e5; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max.png"), url("assets/titlebutton-max@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop.png"), url("assets/titlebutton-max-backdrop@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover.png"), url("assets/titlebutton-max-hover@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active.png"), url("assets/titlebutton-max-active@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min.png"), url("assets/titlebutton-min@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop.png"), url("assets/titlebutton-min-backdrop@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover.png"), url("assets/titlebutton-min-hover@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active.png"), url("assets/titlebutton-min-active@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #e1d5e5; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #c7c7c7, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #e1d5e5; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #e1d5e5; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #f9f7fa; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(225, 213, 229, 0.8); + border-color: rgba(203, 182, 210, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #cbb6d2; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #e1d5e5; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } + +.gedit-headerbar-paned { + color: #c7c7c7; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #e1d5e5; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: rgba(81, 67, 67, 0.9); + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: rgba(81, 67, 67, 0.9); + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(255, 255, 255, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(81, 67, 67, 0.5); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: white; } + +.documents-entry-tag { + background-color: #e1d5e5; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #eae2ed; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #d8c8dd; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #e1d5e5; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #e1d5e5; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #e1d5e5; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #e1d5e5; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #e1d5e5; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #e1d5e5; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #e1d5e5; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #e1d5e5; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #e1d5e5; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #e1d5e5; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #c7c7c7; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #e1d5e5; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #e1d5e5; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #c7c7c7; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #e1d5e5; + border: solid #e1d5e5; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #e1d5e5; + border: solid #e1d5e5; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #e1d5e5; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #e1d5e5; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #e1d5e5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #e1d5e5; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #e1d5e5; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #e1d5e5; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#514343, 0.8); +@define-color wm_unfocused_title alpha(#514343, 0.5); +@define-color wm_bg #d9d9d9; +@define-color wm_bg_unfocused #e1e1e1; +@define-color wm_highlight #e1e1e1; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f46067; +@define-color wm_button_close_hover_bg #f68086; +@define-color wm_button_close_active_bg #f13039; +@define-color wm_icon_close_bg #F8F8F9; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #e1d5e5; +@define-color wm_button_hover_border #D1D3DA; +@define-color wm_icon_bg #90949E; +@define-color wm_icon_unfocused_bg #B6B8C0; +@define-color wm_icon_hover_bg #7A7F8B; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Moka/gtk-3.0/thumbnail.png b/themes/Mint-Y-Moka/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Moka/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Moka/index.theme b/themes/Mint-Y-Moka/index.theme new file mode 100644 index 0000000..4f3cbc7 --- /dev/null +++ b/themes/Mint-Y-Moka/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Moka +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Moka +MetacityTheme=Mint-Y-Moka +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Moka/metacity-1/button-bg.svg b/themes/Mint-Y-Moka/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Moka/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Moka/metacity-1/button-border.svg b/themes/Mint-Y-Moka/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Moka/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Moka/metacity-1/close-icon.svg b/themes/Mint-Y-Moka/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Moka/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Moka/metacity-1/max-icon.svg b/themes/Mint-Y-Moka/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Moka/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Moka/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Moka/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..750a8eb --- /dev/null +++ b/themes/Mint-Y-Moka/metacity-1/metacity-theme-2.xml @@ -0,0 +1,767 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Moka/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Moka/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..888a202 --- /dev/null +++ b/themes/Mint-Y-Moka/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1040 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#787878" /> +<constant name="C_title_unfocused" value="#9d9d9d" /> + +<constant name="C_wm_bg_focused" value="#d9d9d9" /> +<constant name="C_wm_bg_unfocused" value="#d9d9d9" /> + +<constant name="C_wm_border" value="#d0d0d0" /> + +<constant name="C_wm_highlight" value="#eeeeee" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#e1d5e5)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#e1d5e5)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#e1d5e5)/0.8" /> + +<constant name="C_icon_close_bg" value="#F8F8F8" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#fdfdfd" /> +<constant name="C_button_bg_active" value="#909090" /> + +<constant name="C_button_border_hover" value="#D1D1D1" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#B6B6B6" /> +<constant name="C_icon_bg_hover" value="#7A7A7A" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_tiled_right"> + <line x1="0" y1="0" x2="0" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_tiled_left"> + <line x1="width-1" y1="0" x2="width-1" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Moka/metacity-1/min-icon.svg b/themes/Mint-Y-Moka/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Moka/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Moka/metacity-1/thumbnail.png b/themes/Mint-Y-Moka/metacity-1/thumbnail.png new file mode 100644 index 0000000..54ef44a Binary files /dev/null and b/themes/Mint-Y-Moka/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Moka/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Moka/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Moka/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Moka/xfwm4/bottom-active.xpm b/themes/Mint-Y-Moka/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..1191a44 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/bottom-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +".", +".", +"+"}; diff --git a/themes/Mint-Y-Moka/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Moka/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..727a097 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/bottom-left-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++", +".++", +"..."}; diff --git a/themes/Mint-Y-Moka/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Moka/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..0d6f9b5 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/bottom-right-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+", +"..+", +"+++"}; diff --git a/themes/Mint-Y-Moka/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/close-active.xpm b/themes/Mint-Y-Moka/xfwm4/close-active.xpm new file mode 100644 index 0000000..f534cbf --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/close-active.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 30 1 ", +" c #9AB87C", +". c #9AB87D", +"X c #9CB97E", +"o c #9CB980", +"O c #9EBA82", +"+ c #A0BC83", +"@ c #A6BF8E", +"# c #A7BF8F", +"$ c #B9C8A9", +"% c #B9C9AA", +"& c #C4CEBA", +"* c #C5CEBB", +"= c #C9D9B9", +"- c #CCDBBD", +"; c #CFDDC1", +": c #D0DEC3", +"> c #D3D6D1", +", c #D4D6D1", +"< c #D4D6D2", +"1 c gray85", +"2 c #D5E1C9", +"3 c #D7E3CC", +"4 c #D8E3CC", +"5 c #D8E4CD", +"6 c #DCE6D2", +"7 c #EEEEEE", +"8 c #F4F7F2", +"9 c #FBFCFA", +"0 c gray99", +"q c #FDFDFD", +/* pixels */ +"777777777777777777777777", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"11111111,%@Xo@%>11111111", +"1111111&X. .o&1111111", +"111111&... ..X*111111", +"11111,X .+ o X,11111", +"11111%. .93XX30 $11111", +"11111@ -q540: . #11111", +"11111X -qq: .Xo11111", +"11111o. X4qq6X X11111", +"11111@.. 4q--q3 #11111", +"11111% 8= =8 . $11111", +"11111,X .+,11111", +"111111&X. .. &111111", +"1111111&+. XX&1111111", +"11111111,%#oX@%,11111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/close-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..5b4918b --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/close-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c gray71", +". c gray72", +"X c gray74", +"o c gray78", +"O c #CDCDCD", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #E9E9E9", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O. O#######", +"######O O######", +"#####@ . . @#####", +"#####o %# #% o#####", +"#####X +%##%+ X#####", +"##### +%%@ #####", +"#####. #%%# .#####", +"#####X #%++%# X#####", +"#####o $+ +$ o#####", +"#####@ .@#####", +"######O O######", +"#######+ O#######", +"########@oX Xo#########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/close-prelight.xpm b/themes/Mint-Y-Moka/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..ad68f60 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/close-prelight.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 28 1 ", +" c #9ABC78", +". c #9ABC79", +"X c #9BBD79", +"o c #9CBD7A", +"O c #9CBD7C", +"+ c #9EBE7E", +"@ c #A0C07F", +"# c #A6C28B", +"$ c #A7C28B", +"% c #B9CAA7", +"& c #B9CBA8", +"* c #C5CFBA", +"= c #C9DBB7", +"- c #C4D0B9", +"; c #CCDDBB", +": c #CEDEBE", +"> c #D3D6D0", +", c #D4D6D1", +"< c gray85", +"1 c #D0E0C1", +"2 c #D5E3C7", +"3 c #D6E4C9", +"4 c #D8E5CB", +"5 c #D8E5CC", +"6 c #EEEEEE", +"7 c #F4F7F1", +"8 c #FBFCFA", +"9 c #FDFDFD", +/* pixels */ +"666666666666666666666666", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<,%#oO#&><<<<<<<<", +"<<<<<<<-o. .O*<<<<<<<", +"<<<<<<-... ..o*<<<<<<", +"<<<<<,o @ @ O,<<<<<", +"<<<<<&o .83o.28 &<<<<<", +"<<<<<# ;94491 . $<<<<<", +"<<<<<o :991 ..O<<<<<", +"<<<<<O. .o4894Oo O<<<<<", +"<<<<<#. 49;;94. $<<<<<", +"<<<<<& 7= =7. &<<<<<", +"<<<<<,o oO,<<<<<", +"<<<<<<* . *<<<<<<", +"<<<<<<<*Oo oO*<<<<<<<", +"<<<<<<<<,&$oo$&,<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/close-pressed.xpm b/themes/Mint-Y-Moka/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..99b07f2 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/close-pressed.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 32 1 ", +" c #7BA056", +". c #7CA057", +"X c #7FA25B", +"o c #7FA25C", +"O c #80A35D", +"+ c #82A55F", +"@ c #83A660", +"# c #8CAB6E", +"$ c #8DAB6F", +"% c #8EAC70", +"& c #A9BC96", +"* c #A9BC97", +"= c #B9CCA5", +"- c #BAC6AE", +"; c #BBC7AE", +": c #BBC6AF", +"> c #BDCFAA", +", c #BFD1AE", +"< c #C1D2B0", +"1 c #C2D3B2", +"2 c #C8D7B9", +"3 c #CAD9BC", +"4 c #CCDABE", +"5 c #D1DEC5", +"6 c #D1D4CD", +"7 c #D2D5CF", +"8 c gray85", +"9 c #EEEEEE", +"0 c #F2F5EE", +"q c #FAFBFA", +"w c gray99", +"e c #FDFDFD", +/* pixels */ +"999999999999999999999999", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888886&$XX$&688888888", +"8888888-O O-8888888", +"888888-. o-888888", +"888886+ @ + o688888", +"88888& q3..2e &88888", +"88888# >e43e< %88888", +"88888X ,ee< o88888", +"88888X O3we5X X88888", +"88888$ 2e,<w2 %88888", +"88888& 0= =0 *88888", +"888886+ +788888", +"888888- .-888888", +"8888888-+. @:8888888", +"888888886&$XX$&688888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/hide-active.xpm b/themes/Mint-Y-Moka/xfwm4/hide-active.xpm new file mode 100644 index 0000000..9a3913c --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #808080", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..8f9fee5 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #B6B6B6", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Moka/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..520c42f --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/hide-prelight.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c gray48", +". c LightGray", +"X c gray84", +"o c gray85", +"O c #DFDFDF", +"+ c gray89", +"@ c #E4E4E4", +"# c #EEEEEE", +"$ c #F3F3F3", +"% c gray96", +"& c #FBFBFB", +"* c #FDFDFD", +/* pixels */ +"########################", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooOo..oOooooooooo", +"oooooooOX+$&&$@XOooooooo", +"ooooooOX%******$XOoooooo", +"ooooooX%********%Xoooooo", +"oooooO+**********+Oooooo", +"oooooX$**********$oooooo", +"oooooX&** **&.ooooo", +"ooooo.&** **&.ooooo", +"oooooo$**********$Xooooo", +"oooooO+**********+Oooooo", +"ooooooX%********$Xoooooo", +"ooooooOX$******$XOoooooo", +"oooooooOX@$&&$+XOooooooo", +"oooooooooOX..oOooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Moka/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..8d7bd13 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/hide-pressed.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c #CECECE", +"@ c gray85", +"# c #EEEEEE", +"$ c white", +/* pixels */ +"########################", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@O O@@@@@", +"@@@@@X X@@@@@", +"@@@@@. .@@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@. .@@@@@", +"@@@@@X X@@@@@", +"@@@@@O O@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/left-active.xpm b/themes/Mint-Y-Moka/xfwm4/left-active.xpm new file mode 100644 index 0000000..f42db54 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/left-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++"}; diff --git a/themes/Mint-Y-Moka/xfwm4/left-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/maximize-active.xpm b/themes/Mint-Y-Moka/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..de718db --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/maximize-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #909090", +". c #9F9F9F", +"X c gray65", +"o c #A9A9A9", +"O c #D7D7D7", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++X .+++++++++", +"+++++++++O++o +++++++++", +"+++++++++XO+Oo +++++++++", +"++++++++O X++Oo+++++++++", +"+++++++++ X++++++++++++", +"+++++++++. oO++++++++++", +"+++++++++O++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..8dcab42 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/maximize-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #B6B6B6", +". c #BCBCBC", +"X c gray74", +"o c gray76", +"O c #D8D8D8", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++o X+++++++++", +"++++++++++++o +++++++++", +"+++++++++X+++o +++++++++", +"+++++++++ XO+Oo+++++++++", +"++++++++O o++++++++++++", +"+++++++++. o+++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Moka/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..998685b --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/maximize-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #939393", +"X c gray58", +"o c #A0A0A0", +"O c #A4A4A4", +"+ c #A7A7A7", +"@ c LightGray", +"# c gray84", +"$ c gray85", +"% c gray87", +"& c #E2E2E2", +"* c #E4E4E4", +"= c #EEEEEE", +"- c #F3F3F3", +"; c gray96", +": c #FBFBFB", +"> c #FDFDFD", +/* pixels */ +"========================", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$%&$@@$&%$$$$$$$$", +"$$$$$$$*#&-::-*#*$$$$$$$", +"$$$$$$*#;>>>>>>-#*$$$$$$", +"$$$$$%#;>>>>>>>>;#%$$$$$", +"$$$$$&&>>>:o X>>&&$$$$$", +"$$$$$$->>:>:+ >>-$$$$$$", +"$$$$$@:>>o:::+ >>:@$$$$$", +"$$$$$@:>> o>>:o>>:@$$$$$", +"$$$$$$->> +:>>>>-$$$$$$", +"$$$$$&*>>. X>>>>&&$$$$$", +"$$$$$%#->>>>>>>>;#%$$$$$", +"$$$$$$&#->>>>>>;#&$$$$$$", +"$$$$$$$*#&-::-&#*$$$$$$$", +"$$$$$$$$%&$#@$&%$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Moka/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..b076be7 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/maximize-pressed.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 13 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c LightGray", +"@ c gray84", +"# c gray85", +"$ c #DADADA", +"% c #E6E6E6", +"& c gray91", +"* c #EEEEEE", +"= c white", +/* pixels */ +"************************", +"########################", +"########################", +"########################", +"########################", +"########OX. .XO########", +"#######o o#######", +"######o o######", +"#####O O#####", +"#####X @==% X#####", +"#####. . @== .#####", +"##### #. += #####", +"##### =# @ #####", +"#####. ==@ .#####", +"#####X &==@. X#####", +"#####O O#####", +"######o o######", +"#######o o#######", +"########OX. .X+########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/menu-active.xpm b/themes/Mint-Y-Moka/xfwm4/menu-active.xpm new file mode 100644 index 0000000..2400a36 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/menu-active.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #909090", +". c #979797", +"X c #9D9D9D", +"o c gray63", +"O c gray66", +"+ c #B9B9B9", +"@ c #BCBCBC", +"# c #CDCDCD", +"$ c #D7D7D7", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%@.@%%@.+%%%%%%%%", +"%%%%%%%%+ OO +%%%%%%%%", +"%%%%%%%%%@. .@%%%%%%%%%", +"%%%%%%%%%%#oX#%%%%%%%%%%", +"%%%%%%%%%%%$%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..f38b6e2 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray72", +"X c #BCBCBC", +"o c gray76", +"O c #CBCBCB", +"+ c #CDCDCD", +"@ c LightGray", +"# c #D5D5D5", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$O.O$$O.O$$$$$$$$", +"$$$$$$$$O oo O$$$$$$$$", +"$$$$$$$$$+.. +$$$$$$$$$", +"$$$$$$$$$$#XX@$$$$$$$$$$", +"$$$$$$$$$$$#$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Moka/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..1951c18 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/menu-pressed.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c gray58", +"X c gray62", +"o c gray64", +"O c gray65", +"+ c #B6B6B6", +"@ c #B9B9B9", +"# c gray75", +"$ c #C0C0C0", +"% c gray81", +"& c #D0D0D0", +"* c #D7D7D7", +"= c gray85", +"- c #E6E6E6", +"; c #EEEEEE", +": c #F4F4F4", +"> c #F9F9F9", +", c white", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"========================", +"========================", +"========================", +"========================", +"========&O. O&========", +"=======+ +=======", +"======+ @======", +"=====& &=====", +"=====O O=====", +"=====. #:# @:# .=====", +"===== $,,=*,,$ =====", +"===== @>,,>@ =====", +"=====. X-;o =====", +"=====O . O=====", +"=====% &=====", +"======+ +======", +"=======+ +=======", +"========&O. .O&========", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/right-active.xpm b/themes/Mint-Y-Moka/xfwm4/right-active.xpm new file mode 100644 index 0000000..bbfecc2 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/right-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+"}; diff --git a/themes/Mint-Y-Moka/xfwm4/right-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/shade-active.xpm b/themes/Mint-Y-Moka/xfwm4/shade-active.xpm new file mode 100644 index 0000000..798916e --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/shade-active.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #909090", +". c gray57", +"X c #989898", +"o c gray63", +"O c #A4A4A4", +"+ c #A9A9A9", +"@ c #B2B2B2", +"# c gray71", +"$ c gray", +"% c #C0C0C0", +"& c gray78", +"* c #C8C8C8", +"= c #D2D2D2", +"- c gray83", +"; c gray85", +": c #EEEEEE", +/* pixels */ +"::::::::::::::::::::::::", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;=+O=;;;;;;;;;;", +";;;;;;;;;*X .X*;;;;;;;;;", +";;;;;;;;%.. ...$;;;;;;;;", +";;;;;;;;#.@. #.@;;;;;;;;", +";;;;;;;;;=;. ;=;;;;;;;;;", +";;;;;;;;;;;. ;;;;;;;;;;;", +";;;;;;;;;;;..;;;;;;;;;;;", +";;;;;;;;;;;oo;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..7724327 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/shade-inactive.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray", +"O c #C0C0C0", +"+ c gray78", +"@ c gray80", +"# c #CDCDCD", +"$ c gray82", +"% c #D5D5D5", +"& c gray85", +"* c #EEEEEE", +/* pixels */ +"************************", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&%oO%&&&&&&&&&&", +"&&&&&&&&&$X.XX#&&&&&&&&&", +"&&&&&&&&#.....X@&&&&&&&&", +"&&&&&&&&+.+..+.+&&&&&&&&", +"&&&&&&&&&%&..&%&&&&&&&&&", +"&&&&&&&&&&&..$&&&&&&&&&&", +"&&&&&&&&&&&..&&&&&&&&&&&", +"&&&&&&&&&&&oo&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Moka/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..96eb5a1 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/shade-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c gray62", +"+ c gray65", +"@ c #BBBBBB", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=&%%*=*********", +"*******=&;><<>;&=*******", +"******=&,111111>&=******", +"******&,11,+O><1,&******", +"*****=-11=X X*11-=*****", +"*****&>1%. .$1>******", +"*****&<1@ @ #.@1<%*****", +"*****%<1<<1 1,11<%*****", +"******>1111 1111>&*****", +"*****=;1111 1111-=*****", +"******&>111oo111>&******", +"******=&>111111>&=******", +"*******=&;><<>-&=*******", +"*********=&%%*=*********", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Moka/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..b0c23b5 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #909090", +". c #989898", +"X c #A0A0A0", +"o c gray65", +"O c #A9A9A9", +"+ c #B2B2B2", +"@ c gray71", +"# c gray", +"$ c #C0C0C0", +"% c #C8C8C8", +"& c gray83", +"* c gray84", +"= c gray85", +"- c #EEEEEE", +/* pixels */ +"------------------------", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"===========XX===========", +"=========== ===========", +"=========== ===========", +"=========*= =*=========", +"========@ + @ @========", +"========# #========", +"=========%. .%=========", +"==========*Oo*==========", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..129b31b --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray73", +"X c gray", +"o c #C0C0C0", +"O c gray78", +"+ c gray80", +"@ c gray82", +"# c #D7D7D7", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$XX$$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $#$$$$$$$$$", +"$$$$$$$$O O O O$$$$$$$$", +"$$$$$$$$+ +$$$$$$$$", +"$$$$$$$$$@. .@$$$$$$$$$", +"$$$$$$$$$$$oo#$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Moka/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..21aa1ef --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c #A2A2A2", +"+ c gray65", +"@ c gray73", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=*%%*=*********", +"*******=&-><<>;&=*******", +"******=&,111111>&=******", +"******&,111oo111,&******", +"*****=-1111 1111-=*****", +"*****&>1111 1111>&*****", +"*****&<11,1 <<11<%*****", +"*****%<1#.@ @.@1<%*****", +"******>1% .$1>******", +"*****=-1<=X X=<1-=*****", +"******&>11,+O>11,&******", +"******=&>111111,&=******", +"*******=&;><<>;&=*******", +"*********=&%%&=*&*******", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/stick-active.xpm b/themes/Mint-Y-Moka/xfwm4/stick-active.xpm new file mode 100644 index 0000000..d051f7a --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/stick-active.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #939393", +". c gray59", +"X c #989898", +"o c gray62", +"O c #AFAFAF", +"+ c gray70", +"@ c #B4B4B4", +"# c #C1C1C1", +"$ c #C8C8C8", +"% c #CBCBCB", +"& c gray80", +"* c #D2D2D2", +"= c #D5D5D5", +"- c gray85", +"; c #EEEEEE", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"--------*+o o@*--------", +"-------#.O%==%O.#-------", +"------#X&------%X#------", +"-----*.&--------%.*-----", +"-----++----------O+-----", +"-----o%----------%o-----", +"----= =----------= -----", +"-----.=----------= -----", +"-----o%=---------%o-----", +"-----@O----------O@-----", +"-----*.%--------&.*-----", +"------#X%------%X#------", +"-------#.O%=*%O.#-------", +"--------*+o. o@=--------", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"------------------------" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..4031c8d --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/stick-inactive.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #B7B7B7", +". c gray73", +"X c gray74", +"o c gray78", +"O c #CECECE", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #EEEEEE", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O.o+#@+o.O#######", +"######O.+@#####+.O######", +"#####@.+########+.@#####", +"#####oo##########oo#####", +"#####.+##########+X#####", +"#####.###########@ #####", +"##### ###########@.#####", +"#####X+##########+X#####", +"#####oo##########oo#####", +"#####@.+########+.@#####", +"######O.+#####@+.O######", +"#######O o+@#+o.O#######", +"########@oX Xo@########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Moka/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..52a81d0 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/stick-prelight.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c gray70", +". c #B4B4B4", +"X c #B9B9B9", +"o c #C3C3C3", +"O c LightGray", +"+ c gray85", +"@ c gray87", +"# c gray88", +"$ c #EEEEEE", +"% c gray96", +"& c #FDFDFD", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++OX . XO++++++++", +"+++++++o.X@%%+X o+++++++", +"++++++o #&&&&&&@.o++++++", +"+++++O.#&&&&&&&&@.O+++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++ +&&&&&&&&&&+ +++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++ @&&&&&&&&&&+ +++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++O.@&&&&&&&&@.O+++++", +"++++++o.@&&&&&&@.o++++++", +"+++++++o X+%%+X.o+++++++", +"++++++++OX ...XO++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Moka/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..6e61192 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c #939393", +"X c gray59", +"o c #989898", +"O c gray62", +"+ c #A7A7A7", +"@ c gray66", +"# c #AFAFAF", +"$ c gray70", +"% c #B4B4B4", +"& c #C1C1C1", +"* c #C8C8C8", +"= c #CBCBCB", +"- c gray80", +"; c #D2D2D2", +": c #D5D5D5", +"> c gray85", +", c #EEEEEE", +/* pixels */ +",,,,,,,,,,,,,,,,,,,,,,,,", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>;$O..O%;>>>>>>>>", +">>>>>>>&X#=::=#X&>>>>>>>", +">>>>>>&o->>>>>>=o&>>>>>>", +">>>>>;X->;+X.+=>=X;>>>>>", +">>>>>$$>-X .;>#$>>>>>", +">>>>>O=:@ .+>=O>>>>>", +">>>>>.:>X. .>:.>>>>>", +">>>>>X:>. X>:X>>>>>", +">>>>>O=>+ +:=O>>>>>", +">>>>>%$>=X. .X;>#%>>>>>", +">>>>:;X->-+..+;:=X:>>>>>", +">>>>>>&X=>>>>>:-o&>>>>>>", +">>>>>>>&X#=:;=$X&>>>>>>>", +">>>>>>>>:$O..O%;>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..e9fdd0e --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray74", +"O c #C1C1C1", +"+ c gray78", +"@ c #CECECE", +"# c gray82", +"$ c gray84", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%@X+#%$#+X@%%%%%%%", +"%%%%%%@X#$%%%%%#X@%%%%%%", +"%%%%%$X#%$XX.o$%#X$%%%%%", +"%%%%%++%$X.....$%++%%%%%", +"%%%%%X#%O......O%#o%%%%%", +"%%%%%X%%........%$.%%%%%", +"%%%%%.%%. ... .%$X%%%%%", +"%%%%%o#%X......o%#o%%%%%", +"%%%%%++%$......#%++%%%%%", +"%%%%%$.#%$OX.O$%#X$%%%%%", +"%%%%%%@X#%%%%%$#X@%%%%%%", +"%%%%%%%@.+#$%#+X@%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Moka/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..417902c --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #838383", +"X c gray64", +"o c #A4A4A4", +"O c gray70", +"+ c #B4B4B4", +"@ c #B9B9B9", +"# c #C3C3C3", +"$ c LightGray", +"% c gray85", +"& c gray87", +"* c gray88", +"= c #E9E9E9", +"- c #EEEEEE", +"; c #F3F3F3", +": c gray96", +"> c #FDFDFD", +/* pixels */ +"------------------------", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$@OO+O@$%%%%%%%%", +"%%%%%%%#+@&::%@O#%%%%%%%", +"%%%%%%#O*>>>>>>&+#%%%%%%", +"%%%%%$+&>-X. o=>&+$%%%%%", +"%%%%%@@>-. .;>@@%%%%%", +"%%%%%O&>o o>%O%%%%%", +"%%%%%O:>. .>:+%%%%%", +"%%%%%+:>. .>:+%%%%%", +"%%%%%+&>X o>%O%%%%%", +"%%%%%@+>=. .->@@%%%%%", +"%%%%%$+&>-X..o->&+$%%%%%", +"%%%%%%#O&>>>>>>&+#%%%%%%", +"%%%%%%%#O@%::%@+#%%%%%%%", +"%%%%%%%%$@O+++@$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Moka/xfwm4/themerc b/themes/Mint-Y-Moka/xfwm4/themerc new file mode 100644 index 0000000..4e3833f --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#787878 +#active_text_shadow_color=#e7e8eb +inactive_text_color=#9d9d9d +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Moka/xfwm4/title-1-active-shaded.xpm b/themes/Mint-Y-Moka/xfwm4/title-1-active-shaded.xpm new file mode 100644 index 0000000..662295d --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-1-active-shaded.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_shaded_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEFF1", +"+ c #E7E8EB", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Moka/xfwm4/title-1-active.xpm b/themes/Mint-Y-Moka/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..209bb16 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Moka/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/title-2-active.xpm b/themes/Mint-Y-Moka/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..a3cfe4a --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Moka/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/title-3-active.xpm b/themes/Mint-Y-Moka/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..f9df553 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Moka/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/title-4-active.xpm b/themes/Mint-Y-Moka/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..87e3fb4 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Moka/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/title-5-active.xpm b/themes/Mint-Y-Moka/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..48bee41 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Moka/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/top-left-active-shaded.xpm b/themes/Mint-Y-Moka/xfwm4/top-left-active-shaded.xpm new file mode 100644 index 0000000..47dc7df --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/top-left-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_left_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #E8E9EB", +"# c #E7E8EB", +" .+++", +".@###", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####"}; diff --git a/themes/Mint-Y-Moka/xfwm4/top-left-active.xpm b/themes/Mint-Y-Moka/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..ef737a9 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/top-left-active.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 7 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #DFDFE0", +"# c #DADADA", +"$ c #D9D9D9", +"% c #BFBFBF", +" .+++", +".@#$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$"}; diff --git a/themes/Mint-Y-Moka/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Moka/xfwm4/top-right-active-shaded.xpm b/themes/Mint-Y-Moka/xfwm4/top-right-active-shaded.xpm new file mode 100644 index 0000000..4920284 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/top-right-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEFF1", +"+ c #ECEDF0", +"@ c #E7E8EB", +"# c #E8E9EB", +"...+ ", +"@@@#+", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@"}; diff --git a/themes/Mint-Y-Moka/xfwm4/top-right-active.xpm b/themes/Mint-Y-Moka/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..5b57971 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/top-right-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"@ c #DFDFE0", +"# c #BFBFBF", +".... ", +"+++@.", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#"}; diff --git a/themes/Mint-Y-Moka/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Moka/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Moka/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Polo/cinnamon/cinnamon.css b/themes/Mint-Y-Polo/cinnamon/cinnamon.css index 1a0285e..9dfa166 100644 --- a/themes/Mint-Y-Polo/cinnamon/cinnamon.css +++ b/themes/Mint-Y-Polo/cinnamon/cinnamon.css @@ -188,10 +188,10 @@ StScrollBar { background-image: url("light-assets/switch/switch-on.svg"); } .cinnamon-link { - color: #456fb6; + color: #688BC6; text-decoration: underline; } .cinnamon-link:hover { - color: #688bc6; } + color: #688BC6; } #Tooltip { border: 1px solid #d0d0d0; @@ -1171,7 +1171,7 @@ StScrollBar { .workspace-button:outlined, .workspace-button:outlined:hover { color: #688BC6; } .workspace-button:hover { - color: rgba(104, 139, 198, 0.5); } + color: rgba(154, 184, 124, 0.5); } /* Controls the style when using the "Visual representation" option */ .workspace-graph { @@ -1305,7 +1305,7 @@ StScrollBar { padding-bottom: 6px; } .desklet-drag-placeholder { border: 2px solid #688BC6; - background-color: rgba(104, 139, 198, 0.3); } + background-color: rgba(154, 184, 124, 0.3); } .photoframe-box { border: 1px solid #d9d9d9; @@ -1330,16 +1330,16 @@ StScrollBar { max-height: 100px; } .tile-preview { - background-color: rgba(104, 139, 198, 0.3); + background-color: rgba(154, 184, 124, 0.3); border: 1px solid #688BC6; } .tile-preview.snap { - background-color: rgba(104, 139, 198, 0.6); } + background-color: rgba(154, 184, 124, 0.6); } .tile-hud { - background-color: rgba(104, 139, 198, 0.3); + background-color: rgba(154, 184, 124, 0.3); border: 1px solid #688BC6; } .tile-hud.snap { - background-color: rgba(104, 139, 198, 0.6); } + background-color: rgba(154, 184, 124, 0.6); } .tile-hud:top { border-top-width: 0px; } .tile-hud:bottom { diff --git a/themes/Mint-Y-Polo/gtk-3.0/gtk.css b/themes/Mint-Y-Polo/gtk-3.0/gtk.css index b7a9f84..20a40b1 100644 --- a/themes/Mint-Y-Polo/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Polo/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #456fb6; - background-color: rgba(69, 111, 182, 0.2); } + border: 1px solid #688BC6; + background-color: rgba(104, 139, 198, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Sidecar/gtk-3.0/gtk.css b/themes/Mint-Y-Sidecar/gtk-3.0/gtk.css index 346feba..bdaff91 100644 --- a/themes/Mint-Y-Sidecar/gtk-3.0/gtk.css +++ b/themes/Mint-Y-Sidecar/gtk-3.0/gtk.css @@ -60,8 +60,8 @@ text-shadow: none; } .rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #ffe182; - background-color: rgba(255, 225, 130, 0.2); } + border: 1px solid ##FFEDB5; + background-color: rgba(255, 237, 181, 0.2); } .label.separator, .popover .label.separator, .sidebar .label.view.separator { color: #4a4a4a; } diff --git a/themes/Mint-Y-Watusi/cinnamon/cinnamon.css b/themes/Mint-Y-Watusi/cinnamon/cinnamon.css new file mode 100644 index 0000000..6b0dec3 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/cinnamon.css @@ -0,0 +1,1368 @@ +stage { + font-family: sans, Sans-Serif; + font-size: 9pt; + color: #4a4a4a; } + +.label-shadow { + color: transparent; } + +.popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button, .notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button, .sound-button, .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus, .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus, .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .popup-menu #notification .notification-button:focus, .popup-menu #notification .notification-icon-button:focus, .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: whitesmoke; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:hover, .popup-menu #notification .notification-icon-button:hover, .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #d9d9d9; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification .notification-button:hover:focus, .popup-menu #notification .notification-icon-button:hover:focus, .notification-button:hover:focus, .notification-icon-button:hover:focus, .modal-dialog-button-box .modal-dialog-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #4a4a4a; + background-color: white; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + .popup-menu #notification .notification-button:active, .popup-menu #notification .notification-icon-button:active, .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active, .sound-button:active, .popup-menu #notification .notification-button:active:focus, .popup-menu #notification .notification-icon-button:active:focus, .notification-button:active:focus, .notification-icon-button:active:focus, .modal-dialog-button-box .modal-dialog-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #1080e4; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px #1080e4; } + .popup-menu #notification .notification-button:insensitive, .popup-menu #notification .notification-icon-button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: rgba(74, 74, 74, 0.55); + border: 1px solid rgba(217, 217, 217, 0.55); + background-color: rgba(245, 245, 245, 0.55); + box-shadow: inset 0 2px 4px rgba(245, 245, 245, 0.05); } + +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #1080e4; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #cfd6e6; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: #f8f8f8; + border-color: 1px solid #dee2eb; + box-shadow: inset 0 2px 4px rgba(248, 248, 248, 0.05); } + .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #F27835; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c3c3c3; + selection-background-color: #1080e4; + selected-color: #ffffff; + transition-duration: 300ms; + border-radius: 3px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #ffffff; + background-color: #1080e4; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-color: rgba(109, 109, 109, 0.2); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #aeaeae; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #bebebe; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #1080e4; } + +.separator { + -gradient-height: 1px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 0.3em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #1080e4; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 0.5em; + height: 1em; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } +.check-box StLabel { + font-weight: normal; } +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.check-box:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.check-box:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.check-box:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } +.radiobutton:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } +.radiobutton:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } +.radiobutton:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; } + .toggle-switch-us, .toggle-switch-intl { + background-image: url("light-assets/switch/switch-off.svg"); } + .toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url("light-assets/switch/switch-on.svg"); } + +.cinnamon-link { + color: #1080e4; + text-decoration: underline; } + .cinnamon-link:hover { + color: #1080e4; } + +#Tooltip { + border: 1px solid #d0d0d0; + border-radius: 3px; + padding: 5px 12px; + background-color: #fbeaa0; + color: #4a4a4a; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.popup-menu { + color: white; + color: #4a4a4a; } + .popup-menu-arrow { + icon-size: 16px; } + .popup-menu .popup-sub-menu { + background-color: #ffffff; + box-shadow: none; } + .popup-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 1.75em; } + .popup-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 1.75em; } + .popup-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .popup-menu .popup-sub-menu StScrollBar StBin#trough, .popup-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .popup-menu .popup-menu-content { + padding: 1em 0em 1em 0em; } + .popup-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; + border: 1px solid transparent; + border-left-width: 0; + border-right-width: 0; } + .popup-menu .popup-menu-item:active { + color: #4a4a4a; + border-color: rgba(74, 74, 74, 0.11); + background-color: rgba(74, 74, 74, 0.08); } + .popup-menu .popup-menu-item:insensitive { + color: rgba(74, 74, 74, 0.5); + background: none; } + .popup-menu .popup-inactive-menu-item { + color: #4a4a4a; } + .popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(74, 74, 74, 0.55); } + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: #F0F0F0; + -arrow-border-width: 1px; + -arrow-border-color: #d9d9d9; + -arrow-base: 21px; + -arrow-rise: 9px; + -boxpointer-gap: 2px; } + +/*Don't know what this does*/ +.popup-combo-menu { + background-color: rgba(0, 0, 0, 0.4); + padding: 1em 0em; + color: red; + border: 1px solid rgba(0, 0, 0, 0.6); + border-radius: 3px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 2px; + -gradient-start: transparent; + -gradient-end: transparent; + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + font-weight: bold; + height: 27px; } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + #panel:highlight { + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } + +.panelLeft { + spacing: 4px; } + .panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + .panelLeft:ltr { + padding-right: 4px; } + .panelLeft:rtl { + padding-left: 4px; } + .panelLeft.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelLeft.vertical:ltr { + padding-right: 0px; } + .panelLeft.vertical:rtl { + padding-left: 0px; } +.panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } +.panelRight:ltr { + padding-left: 4px; + spacing: 0px; } +.panelRight:rtl { + padding-right: 4px; + spacing: 0px; } +.panelRight.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 2px; + padding-bottom: 2px; } + .panelRight.vertical:ltr { + padding-left: 0px; + spacing: 0px; } + .panelRight.vertical:rtl { + padding-right: 0px; + spacing: 0px; } +.panelCenter { + spacing: 4px; } + .panelCenter.vertical { + padding-left: 0px; + padding-right: 0px; } + .panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: #ffffff; + font-size: 1em; + padding: 0px; } +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } +.panel-bottom, .panel-left, .panel-right { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } +.panel-dummy { + background-color: rgba(252, 65, 56, 0.5); } + .panel-dummy:entered { + background-color: rgba(252, 65, 56, 0.6); } +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; + height: 22px; } +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(53, 53, 53, 0.95); + border: 1px solid rgba(53, 53, 53, 0.95); + color: #c3c3c3; + spacing: 25px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected { + background-color: #1080e4; + color: #ffffff; + border: 1px solid #1080e4; + spacing: 25px; } + +.expo-workspaces-name-entry, +.expo-workspaces-name-entry#selected { + height: 15px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, + .expo-workspaces-name-entry#selected:focus { + border: 1px solid #1080e4; + background-color: #1080e4; + color: #ffffff; + font-style: italic; + transition-duration: 300; + selection-background-color: #ffffff; + selected-color: #1080e4; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #1080e4; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #353535; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } +.about-title { + font-size: 2em; + font-weight: bold; } +.about-uuid { + font-size: 10px; + color: #888; } +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } +.about-scrollBox { + border: 1px solid #d9d9d9; + border-radius: 2px; + background-color: #ffffff; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } +.about-description { + padding-top: 4px; + padding-bottom: 16px; } +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #4a4a4a; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #4a4a4a; + border-radius: 2px; } + +.calendar-day-base { + font-size: 85%; + text-align: center; + width: 25px; + height: 25px; + padding: 0.1em; + margin: 2px; + border-radius: 12.5px; } + +.calendar-day-heading { + color: rgba(74, 74, 74, 0.85); + margin-top: 1em; + font-size: 80%; } + +.calendar-day { + border-width: 0; + color: rgba(74, 74, 74, 0.9); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #4a4a4a; + background-color: transparent; + font-weight: bold; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #ffffff; + background-color: #1080e4; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(74, 74, 74, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(74, 74, 74, 0.85); + font-size: 80%; } + +#notification { + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #4a4a4a; } + .popup-menu #notification { + color: #4a4a4a; + border-image: url("light-assets/misc/message.svg") 9 9 9 9; } + .popup-menu #notification .notification-button, .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c3c3c3; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #4a4a4a; } +.notification-button, .notification-icon-button { + padding: 5px; } +.notification-icon-button > StIcon { + icon-size: 32px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #4a4a4a; + border: 1px solid #d9d9d9; + background-color: #F0F0F0; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #1080e4; } + .switcher-list .item-box:selected { + color: #ffffff; + background-color: #1080e4; + border: 0px solid #1080e4; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: transparent; + color: #4a4a4a; } + .switcher-arrow:highlighted { + border-color: transparent; + color: #ffffff; } + +.thumbnail-scroll-gradient-left { + background-color: transparent; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: transparent; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + .ripple-box:rtl { + background-image: url("common-assets/misc/corner-ripple.svg"); } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 0; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + border: none; + background-color: #F0F0F0; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border: 1px solid #d9d9d9; + border-radius: 3px; + background-color: #F0F0F0; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #4a4a4a; + padding-bottom: 0; } + .run-dialog-error-label { + color: #FC4138; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-top: 5px; + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c3c3c3; + selected-color: #ffffff; + selection-background-color: #1080e4; + color: #c3c3c3; + background-color: rgba(109, 109, 109, 0.35); + border: 1px solid rgba(22, 22, 22, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #4a4a4a; + background-color: #ffffff; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #F27835; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(53, 53, 53, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid #d9d9d9; + background-color: rgba(109, 109, 109, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + border: 1px solid #1080e4; + background-color: #1080e4; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #606060; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(109, 109, 109, 0.2); } + +.keyboard-subkeys { + color: #c3c3c3; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(53, 53, 53, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + margin: auto; + padding: 10px; + transition-duration: 300; + background-color: #ffffff; + border: 1px solid #d9d9d9; } +.menu-favorites-button { + padding: 10px; + border: 1px solid transparent; } +.menu-places-box { + margin: auto; + padding: 10px; + border: 0px solid red; } +.menu-places-button { + padding: 10px; } +.menu-categories-box { + padding: 10px 30px 10px 30px; } +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } +.menu-application-button { + padding: 7px; + border: 1px solid transparent; } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } +.menu-category-button { + padding: 7px; + border: 1px solid transparent; } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(74, 74, 74, 0.55); + border: 1px solid transparent; } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } +.menu-selected-app-title { + font-weight: bold; } +.menu-selected-app-description { + max-width: 150px; } +.menu-search-box:ltr { + padding-left: 30px; } +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + height: 15px; + font-weight: normal; + caret-color: #4a4a4a; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #4a4a4a; } + +/* Context menu (at the moment only for favorites) */ +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: #4a4a4a; + background-color: #F0F0F0; + border: 1px solid #d9d9d9; + border-radius: 5px; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #1080e4; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; + padding-top: 1px; } + .window-list-box.vertical { + spacing: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; } + .window-list-box:highlight { + background-color: rgba(252, 65, 56, 0.5); } +.window-list-item-label { + font-weight: bold; + width: 15em; + min-width: 5px; } +.window-list-item-box { + font-weight: bold; + background-image: none; + padding-left: 8px; + padding-right: 8px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box.right { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + .window-list-item-box:hover { + color: #ffffff; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: #ffffff; + border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } +.window-list-item-demands-attention { + background-gradient-direction: vertical; + background-gradient-start: #F04A50; + background-gradient-end: #F04A50; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 8px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(40, 40, 40, 0.85); + border: 0px solid rgba(28, 28, 28, 0.95); + border-bottom: 1px; + color: #c3c3c3; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c3c3c3; + border-radius: 2px; + border: 1px solid rgba(53, 53, 53, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #c3c3c3; + border: 1px solid rgba(2, 2, 2, 0.35); + background-color: rgba(127, 127, 127, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(255, 255, 255, 0); + color: #ffffff; + background-color: #1080e4; + border: 1px solid #1080e4; + box-shadow: inset 0 2px 4px #1080e4; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player-overlay > StBoxLayout { + spacing: 5px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #cfd6e6; + -slider-border-color: transparent; + -slider-active-background-color: #1080e4; + -slider-active-border-color: transparent; + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #ffffff; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #1080e4; } + .workspace-button:hover { + color: rgba(154, 184, 124, 0.5); } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #1080e4; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(79, 79, 79, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(79, 79, 79, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(105, 105, 105, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(54, 54, 54, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +#panel-launchers-box { + padding-left: 7px; } + #panel-launchers-box.vertical { + padding-top: 2px; + padding-bottom: 2px; + padding-left: 0px; + padding-right: 0px; } + #panel-launchers-box.vertical .panel-launcher { + border-bottom-width: 1px; } + +.panel-launcher { + margin: 1px; + padding: 1px; + transition-duration: 200; } + .panel-launcher:hover { + border: 0px solid #1080e4; + border-bottom-width: 1px; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } +.applet-box { + padding-left: 3px; + padding-right: 3px; + color: rgba(255, 255, 255, 0.6); + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding-left: 0px; + padding-right: 0px; + padding-top: 3px; + padding-bottom: 3px; } + .applet-box:hover { + color: #ffffff; + background-color: #1080e4; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(252, 65, 56, 0.5); } +.applet-label { + font-weight: bold; + color: rgba(255, 255, 255, 0.6); } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #ffffff; + text-shadow: none; } +.applet-icon { + color: #ffffff; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #ffffff; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #4a4a4a; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #4a4a4a; } + .desklet:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-with-borders-and-header { + border: 1px solid #d9d9d9; + border-top-width: 0; + border-radius: 0 0 5px 5px; + background-color: #F0F0F0; + color: #4a4a4a; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(252, 65, 56, 0.5); } + .desklet-header { + border: 1px solid #d9d9d9; + border-radius: 5px 5px 0 0; + background-color: #e8e8e8; + color: #4a4a4a; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #1080e4; + background-color: rgba(154, 184, 124, 0.3); } + +.photoframe-box { + border: 1px solid #d9d9d9; + border-radius: 5px; + background-color: #F0F0F0; + color: #4a4a4a; + padding: 12px; + padding-bottom: 16px; } + +/*FIXME*/ +.workspace-osd { + /*color: red;*/ + color: #c3c3c3; + text-shadow: black 5px 5px 5px; + font-weight: bold; + font-size: 48pt; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #1080e4; } + .tile-preview.snap { + background-color: rgba(154, 184, 124, 0.6); } + +.tile-hud { + background-color: rgba(154, 184, 124, 0.3); + border: 1px solid #1080e4; } + .tile-hud.snap { + background-color: rgba(154, 184, 124, 0.6); } + .tile-hud:top { + border-top-width: 0px; } + .tile-hud:bottom { + border-bottom-width: 0px; } + .tile-hud:left { + border-left-width: 0px; } + .tile-hud:right { + border-right-width: 0px; } + .tile-hud:top-left { + border-top-width: 0px; + border-left-width: 0px; } + .tile-hud:top-right { + border-top-width: 0px; + border-right-width: 0px; } + .tile-hud:bottom-left { + border-bottom-width: 0px; + border-left-width: 0px; } + .tile-hud:bottom-right { + border-bottom-width: 0px; + border-right-width: 0px; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: transparent; + border-radius: 0px; } diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/menu/menu-separator.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..4962ebc --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="90.311111mm" + height="0.56444442mm" + viewBox="0 0 320 1.9999999" + id="svg7537" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="menu-separator.svg"> + <defs + id="defs7539" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="115.53549" + inkscape:cy="8.9322818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1366" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="23" + inkscape:window-maximized="1" /> + <metadata + id="metadata7542"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(340,-443.3622)" /> +</svg> diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..0adcf33 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="7.0289763" + inkscape:cy="105.84046" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:1;fill:#1080e4;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:1;fill:#1080e4;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#ffffff;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..ce48f5c --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="3.4046076" + inkscape:cy="118.15924" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..5b3ed52 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="7.3133825" + inkscape:cy="105.84268" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1030" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z " + transform="translate(0,852.36218)" + id="rect3810" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#000000;fill-opacity:1;opacity:0.5" /> + <rect + rx="2" + style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3812" + width="37" + height="198" + x="1.000005" + y="853.36218" + ry="2" /> + <g + id="g3917" + style="fill:#bababa;fill-opacity:1"> + <rect + ry="1.1428567" + y="944.36218" + x="17" + height="15.999994" + width="2.0000002" + id="rect3897" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1.1428567" + y="-26" + x="951.36218" + height="15.999994" + width="2.0000002" + id="rect3897-6" + style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/bg.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..feeddea --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + viewBox="0 0 32 32" + id="svg5386" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="bg.svg"> + <defs + id="defs5388" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.271674" + inkscape:cy="5.838404" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid5954" /> + </sodipodi:namedview> + <metadata + id="metadata5391"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1020.3622)"> + <rect + style="display:inline;opacity:0.81;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164-4-3" + width="23" + height="21.999889" + x="4.5" + y="1024.8622" + rx="2.0000005" + ry="1.9999999" /> + <rect + style="display:inline;opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4164" + width="22" + height="20.999971" + x="5" + y="1025.3622" + rx="1.4" + ry="1.4" /> + <g + transform="translate(-425.99995,658.36226)" + id="g4271" + style="display:inline;opacity:0.65"> + <rect + ry="8" + rx="8" + y="362.49994" + x="426.49994" + height="31" + width="31.000011" + id="rect4164-4-7-5-3-8-8" + style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6.999999" + rx="7" + y="363.49997" + x="427.49994" + height="28.999996" + width="29.000011" + id="rect4164-4-7-5-3-8" + style="display:inline;opacity:0.07000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="6" + rx="6" + y="364.49994" + x="428.49994" + height="26.999998" + width="27.000011" + id="rect4164-4-7-5-3" + style="display:inline;opacity:0.12999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="5" + rx="4.9999995" + y="365.49997" + x="429.49997" + height="24.999998" + width="24.999981" + id="rect4164-4-7-5" + style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="translate(-6.1035156e-5,0)" + id="rect4164-4-7" + d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z" + style="display:inline;opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscssc" /> + </g> + </g> +</svg> diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..90f4852 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="calendar-arrow-left-hover.svg" + height="16" + id="svg7384" + inkscape:version="0.91 r13725" + version="1.1" + width="16"> + <metadata + id="metadata90"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + bordercolor="#666666" + borderopacity="1" + inkscape:current-layer="layer12" + inkscape:cx="7.3546086" + inkscape:cy="7.9323223" + gridtolerance="10" + inkscape:guide-bbox="true" + guidetolerance="10" + id="namedview88" + inkscape:object-nodes="false" + inkscape:object-paths="false" + objecttolerance="10" + pagecolor="#ffffff" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + showborder="true" + showgrid="true" + showguides="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-global="true" + inkscape:snap-grids="true" + inkscape:snap-nodes="true" + inkscape:snap-others="false" + inkscape:snap-to-guides="true" + inkscape:window-height="1030" + inkscape:window-maximized="1" + inkscape:window-width="1920" + inkscape:window-x="1920" + inkscape:window-y="0" + inkscape:zoom="22.627417" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + empspacing="2" + enabled="true" + id="grid4866" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="1px" + spacingy="1px" + type="xygrid" + visible="true" /> + <inkscape:grid + color="#000000" + empcolor="#000000" + empopacity="0" + empspacing="4" + enabled="true" + id="grid5968" + opacity="0.1254902" + originx="141px" + originy="530px" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" + type="xygrid" + visible="true" /> + </sodipodi:namedview> + <title + id="title9167">Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..2774254 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..dfb2b37 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..366e69b --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close-active.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..95822bf --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close-hover.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..7b52140 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..e221a33 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/corner-ripple.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..fa409c1 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/desklet-header.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..a6e1054 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/desklet.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..8445c61 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/osd.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..df41a00 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/overview-hover.png b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/overview.png b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/trash-icon.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..61097dd --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/activities-active.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/activities-active.svg new file mode 100644 index 0000000..6986f5c --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/activities-active.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/activities.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/activities.svg new file mode 100644 index 0000000..b4a4b0d --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/activities.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/panel-bottom.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..c6d6f5f --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/panel-top.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..43dd84b --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/window-list-active-bottom.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/window-list-active-bottom.svg new file mode 100644 index 0000000..74800f9 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/window-list-active-bottom.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/window-list-active-top.svg b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/window-list-active-top.svg new file mode 100644 index 0000000..8ae94cf --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/common-assets/panel/window-list-active-top.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..ac2b579 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-checked.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..74da684 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..8f62da9 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-unchecked.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..765e877 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/menu-hover.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/menu-hover.svg new file mode 100644 index 0000000..938245a --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/menu-hover.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/menu.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/menu.svg new file mode 100644 index 0000000..5ae7466 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/submenu.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/submenu.svg new file mode 100644 index 0000000..378f29b --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/button-box.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/button-box.svg new file mode 100644 index 0000000..036f0d1 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/button-box.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/message.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/message.svg new file mode 100644 index 0000000..6e6ba36 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/message.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/modal.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/modal.svg new file mode 100644 index 0000000..b61f537 --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/switch/switch-off.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/switch/switch-off.svg new file mode 100644 index 0000000..7c4ad4d --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/light-assets/switch/switch-on.svg b/themes/Mint-Y-Watusi/cinnamon/light-assets/switch/switch-on.svg new file mode 100644 index 0000000..4ff8eef --- /dev/null +++ b/themes/Mint-Y-Watusi/cinnamon/light-assets/switch/switch-on.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/Mint-Y-Watusi/cinnamon/thumbnail.png b/themes/Mint-Y-Watusi/cinnamon/thumbnail.png new file mode 100644 index 0000000..e278c10 Binary files /dev/null and b/themes/Mint-Y-Watusi/cinnamon/thumbnail.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/apps.rc b/themes/Mint-Y-Watusi/gtk-2.0/apps.rc new file mode 100644 index 0000000..8820077 --- /dev/null +++ b/themes/Mint-Y-Watusi/gtk-2.0/apps.rc @@ -0,0 +1,45 @@ + +########### FILE MANAGERS ############## + +style "thunar-handle" { GtkPaned::handle-size = 2 } + +style "dark-sidebar" { + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg + + + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg + + text[NORMAL] = "#C3C3C3" + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color +} + +style "thunar-frame" { + xthickness = 0 + ythickness = 0 +} + +# Thunar +widget_class "*ThunarWindow*." style "thunar-frame" +widget_class "*ThunarShortcutsView*" style "dark-sidebar" +widget_class "*ThunarTreeView*" style "dark-sidebar" +widget_class "*ThunarWindow*." style "thunar-handle" + +# Caja +widget_class "*CajaSidePane*" style "dark-sidebar" + + + +####### TERMINAL ################ + +style "terminal_screen" +{ + text[NORMAL] = "#ffffff" + base[NORMAL] = "#3f3f3f" + + TerminalScreen::background-darkness = 0.9 +} + +widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen" diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-insens.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-insens.png new file mode 100644 index 0000000..3c82734 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-insens.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-prelight.png new file mode 100644 index 0000000..2cb9bd9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small-insens.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small-insens.png new file mode 100644 index 0000000..8783904 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small-insens.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png new file mode 100644 index 0000000..7750dc1 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small.png new file mode 100644 index 0000000..0bf1768 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down-small.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down.png new file mode 100644 index 0000000..f57c15e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-down.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left-insens.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left-insens.png new file mode 100644 index 0000000..27104c6 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left-insens.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left-prelight.png new file mode 100644 index 0000000..b85bd12 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left.png new file mode 100644 index 0000000..b211979 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-left.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right-insens.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right-insens.png new file mode 100644 index 0000000..85cba72 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right-insens.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right-prelight.png new file mode 100644 index 0000000..ab6c74c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right.png new file mode 100644 index 0000000..cf97804 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-right.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-insens.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-insens.png new file mode 100644 index 0000000..1be55d3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-insens.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-prelight.png new file mode 100644 index 0000000..8dd78cc Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small-insens.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small-insens.png new file mode 100644 index 0000000..7b5eb9e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small-insens.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png new file mode 100644 index 0000000..0436d32 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small.png new file mode 100644 index 0000000..511056f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up-small.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up.png new file mode 100644 index 0000000..f05766b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/arrow-up.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/button-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..7850166 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/button-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/button-hover.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..fab89f6 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/button-hover.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/button-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..1a6660f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/button-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/button.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/button.png new file mode 100644 index 0000000..fd430a8 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/button.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..c296029 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-checked.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..820df91 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..c1e1b6d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..a98d3d3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png new file mode 100644 index 0000000..47b91b7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-active-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-active.png new file mode 100644 index 0000000..b821b11 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png new file mode 100644 index 0000000..f2787a1 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png new file mode 100644 index 0000000..cbc15c9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png new file mode 100644 index 0000000..e654a6b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button.png new file mode 100644 index 0000000..fa85ac5 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-button.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png new file mode 100644 index 0000000..ef12ef9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png new file mode 100644 index 0000000..013bbd4 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-notebook.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png new file mode 100644 index 0000000..bc8aa69 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus.png new file mode 100644 index 0000000..6689a35 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-focus.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png new file mode 100644 index 0000000..1744bbe Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png new file mode 100644 index 0000000..f0b39ee Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-notebook.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png new file mode 100644 index 0000000..eb794b5 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive.png new file mode 100644 index 0000000..1e905a7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png new file mode 100644 index 0000000..9f877d8 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-notebook-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-notebook.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-notebook.png new file mode 100644 index 0000000..e65c4d6 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-notebook.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-rtl.png new file mode 100644 index 0000000..a8205c4 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry.png new file mode 100644 index 0000000..adfef2b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/combo-entry.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-disable-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-disable-rtl.png new file mode 100644 index 0000000..ed12420 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-disable.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-disable.png new file mode 100644 index 0000000..87956d2 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-disable.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-rtl.png new file mode 100644 index 0000000..370259f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background.png new file mode 100644 index 0000000..0f40ef0 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/down-background.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png new file mode 100644 index 0000000..d7196f2 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-active-bg-solid.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-active-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-active-bg.png new file mode 100644 index 0000000..14b7374 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-bg-solid.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-bg-solid.png new file mode 100644 index 0000000..16d1f64 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-bg-solid.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-bg.png new file mode 100644 index 0000000..33a56e7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png new file mode 100644 index 0000000..7d468a5 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-fill.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-fill.png new file mode 100644 index 0000000..15f6746 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/entry-border-fill.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/focus-line.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/focus-line.png new file mode 100644 index 0000000..c06f317 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/focus-line.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/frame-gap-end.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/frame-gap-end.png new file mode 100644 index 0000000..8d25364 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/frame-gap-end.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/frame-gap-start.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/frame-gap-start.png new file mode 100644 index 0000000..b575a6e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/frame-gap-start.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/frame.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..82945e9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/frame.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/handle-h.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/handle-h.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/handle-h.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/handle-v.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/handle-v.png new file mode 100644 index 0000000..ad016d2 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/handle-v.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/inline-toolbar.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/inline-toolbar.png new file mode 100644 index 0000000..6094d5f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/inline-toolbar.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/line-h.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/line-h.png new file mode 100644 index 0000000..8320e2a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/line-h.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/line-v.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/line-v.png new file mode 100644 index 0000000..c13ee45 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/line-v.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-arrow-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-arrow-prelight.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-arrow-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-arrow.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-arrow.png new file mode 100644 index 0000000..6ef6a64 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-arrow.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..27d32c7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-checked.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..e19dd68 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..a0ad9fd Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png new file mode 100644 index 0000000..cc574e4 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..8c30fe3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-checked.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..9ed55f6 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png new file mode 100644 index 0000000..e7d0429 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-unchecked.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-unchecked.png new file mode 100644 index 0000000..1a297dd Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menu-radio-unchecked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menubar.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menubar.png new file mode 100644 index 0000000..dbf51c1 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menubar.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menubar_button.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menubar_button.png new file mode 100644 index 0000000..d9a5c32 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menubar_button.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/menuitem.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/menuitem.png new file mode 100644 index 0000000..02f74be Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/menuitem.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/minus.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/minus.png new file mode 100644 index 0000000..a135b7b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/minus.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png new file mode 100644 index 0000000..5e58a8a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png new file mode 100644 index 0000000..4a47fbf Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png new file mode 100644 index 0000000..aecefef Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-gap-horiz.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-gap-horiz.png new file mode 100644 index 0000000..e14fe4b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-gap-horiz.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-gap-vert.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-gap-vert.png new file mode 100644 index 0000000..bc4a11c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook-gap-vert.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook.png new file mode 100644 index 0000000..49aad67 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/notebook.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/null.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/null.png new file mode 100644 index 0000000..d7a1600 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/null.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/plus.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/plus.png new file mode 100644 index 0000000..fafcd10 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/plus.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/progressbar.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/progressbar.png new file mode 100644 index 0000000..2692b94 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/progressbar.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/progressbar_v.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/progressbar_v.png new file mode 100644 index 0000000..a91e329 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/progressbar_v.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..3f2232c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-checked.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..f9ec947 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..0efe47b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-unchecked.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..c5f29df Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-active.png new file mode 100644 index 0000000..84a8ce4 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-insens.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-insens.png new file mode 100644 index 0000000..619bacf Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-insens.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-prelight.png new file mode 100644 index 0000000..0185f16 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz.png new file mode 100644 index 0000000..d5bf46f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-horiz.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-insensitive.png new file mode 100644 index 0000000..cecb83d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-prelight.png new file mode 100644 index 0000000..0722b77 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-active.png new file mode 100644 index 0000000..e9b37a1 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-insens.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-insens.png new file mode 100644 index 0000000..bec4232 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-insens.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-prelight.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-prelight.png new file mode 100644 index 0000000..95e2df1 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert-prelight.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert.png new file mode 100644 index 0000000..32cb368 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider-vert.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/slider.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider.png new file mode 100644 index 0000000..4c9d301 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/slider.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-bottom-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-bottom-active.png new file mode 100644 index 0000000..fe63df9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-bottom-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-left-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..c2b43fa Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-left-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-right-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..43eae96 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-right-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-top-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-top-active.png new file mode 100644 index 0000000..9d88e5a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/tab-top-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..4ea6d28 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png new file mode 100644 index 0000000..f2796fa Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..5f852a5 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar.png new file mode 100644 index 0000000..714890a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/toolbar.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/tree_header.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/tree_header.png new file mode 100644 index 0000000..a6b8c93 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/tree_header.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-horizontal-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-horizontal-active.png new file mode 100644 index 0000000..0de85ab Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-horizontal-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-horizontal.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-horizontal.png new file mode 100644 index 0000000..b784550 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-horizontal.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-progressbar.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-progressbar.png new file mode 100644 index 0000000..c833b99 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-progressbar.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-progressbar_v.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-progressbar_v.png new file mode 100644 index 0000000..c9f2dcc Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-progressbar_v.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png new file mode 100644 index 0000000..e95ae2a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-scrollbar-horiz.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png new file mode 100644 index 0000000..f55994b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-scrollbar-vert.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-vertical-active.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-vertical-active.png new file mode 100644 index 0000000..c63f182 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-vertical-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-vertical.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-vertical.png new file mode 100644 index 0000000..3e9af49 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/trough-vertical.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-disable-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-disable-rtl.png new file mode 100644 index 0000000..6e5c2ce Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-disable-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-disable.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-disable.png new file mode 100644 index 0000000..0e2f1be Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-disable.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-rtl.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-rtl.png new file mode 100644 index 0000000..3f60606 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background-rtl.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background.png b/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background.png new file mode 100644 index 0000000..3247f7f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/assets/up-background.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/gtkrc b/themes/Mint-Y-Watusi/gtk-2.0/gtkrc new file mode 100644 index 0000000..cfdce6b --- /dev/null +++ b/themes/Mint-Y-Watusi/gtk-2.0/gtkrc @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#4a4a4a\ntooltip_fg_color:#4a4a4a\nselected_bg_color:#9ab87c\nselected_fg_color:#FFFFFF\ntext_color:#4a4a4a\nbg_color:#f0f0f0\ninsensitive_bg_color:#fbfcfc\ninsensitive_fg_color:#a9a9a9\nnotebook_bg:#ffffff\ndark_sidebar_bg:#454545\ntooltip_bg_color:#fbeaa0\nlink_color:#5294E2\nmenu_bg:#ffffff" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar.rc" diff --git a/themes/Mint-Y-Watusi/gtk-2.0/main.rc b/themes/Mint-Y-Watusi/gtk-2.0/main.rc new file mode 100644 index 0000000..72255a9 --- /dev/null +++ b/themes/Mint-Y-Watusi/gtk-2.0/main.rc @@ -0,0 +1,2441 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 13 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 15 + GtkScale::slider_width = 15 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 8 + GtkProgressBar::min-vertical-bar-width = 8 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-horiz.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar-vert.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @menu_bg + bg[INSENSITIVE] = @menu_bg + bg[PRELIGHT] = @menu_bg + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + fg[NORMAL] = @fg_color + fg[SELECTED] = @fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-horizontal.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-horizontal-active.png" + border = { 8, 8, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/trough-vertical.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/trough-vertical-active.png" + border = { 0, 0, 8, 8 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + base[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + file = "assets/null.png" + stretch = TRUE + } + } +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "checkbutton" +widget_class "*" style "combobox" +widget_class "**" style "combobox_button" +widget_class "**" style "combobox_separator" +widget_class "***" style "treeview_header" +widget_class "**" style "inline_toolbar" +widget_class "**" style "combobox_entry" +widget_class "**" style "combobox_entry_button" +widget_class "***" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "**" style "notebook_entry" +widget_class "***" style "entry" + +widget_class "***" style "notebook_combobox_entry" +widget_class "****" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*." style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +#Fix GVim tabs +widget_class "**" style "notebook_eventbox" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "**" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "***" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*" style "text" +widget_class "**" style "text" +widget_class "**" style "text" +widget_class "**" style "text" diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-active.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-active.png new file mode 100644 index 0000000..dcd6865 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-hover.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-hover.png new file mode 100644 index 0000000..aa079ec Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-hover.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png new file mode 100644 index 0000000..4ed8237 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button.png new file mode 100644 index 0000000..9d50a7e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/button.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png new file mode 100644 index 0000000..299c550 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..23a344e --- /dev/null +++ b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,222 @@ +style "menubar" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[ACTIVE] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f2f2f" + fg[NORMAL] = "#dadada" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#dadada") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#dadada" + fg[PRELIGHT] = "#dadada" + fg[INSENSITIVE] = shade(0.7, "#dadada") + fg[ACTIVE] = "#dadada" + + text[NORMAL] = "#dadada" + text[PRELIGHT] = "#dadada" + text[INSENSITIVE] = shade(0.7, "#dadada") + text[ACTIVE] = "#dadada" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#414141" + base[INSENSITIVE] = "#393939" + + text[NORMAL] = "#dadada" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f2f2f" + ChromeGtkFrame::inactive-frame-color = "#2f2f2f" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*ThunarWindow**" style "toolbar_button" +widget_class "*ThunarWindow**" style "toolbar_text" +widget_class "*ThunarWindow***" style "menubar-text" + diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..5bd9a7d --- /dev/null +++ b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,166 @@ +style "menubar" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[PRELIGHT] = "#5c5c5c" + fg[ACTIVE] = "#5c5c5c" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#d9d9d9" + fg[NORMAL] = "#5c5c5c" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#5c5c5c") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f4f4" + + text[NORMAL] = "#5c5c5c" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#d9d9d9" + ChromeGtkFrame::inactive-frame-color = "#d9d9d9" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "**" style "menubar" +widget_class "*.*" style "menubar_item" + +widget_class "*ThunarWindow*" style "menubar" +widget_class "*CajaNavigationWindow*" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "***" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*" style "menubar-borderless" +widget_class "*CajaNavigationWindow*" style "menubar-borderless" +widget_class "*ThunarWindow**" style "toolbar_entry" +widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar.png new file mode 100644 index 0000000..2be034e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png new file mode 100644 index 0000000..8179244 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar_button-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png new file mode 100644 index 0000000..78c8122 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/menubar_button.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png new file mode 100644 index 0000000..54293fd Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png new file mode 100644 index 0000000..519e134 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png new file mode 100644 index 0000000..bf7b10d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png new file mode 100644 index 0000000..401c5cb Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png new file mode 100644 index 0000000..24480b9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png new file mode 100644 index 0000000..0fc822f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png differ diff --git a/themes/Mint-Y-Watusi/gtk-2.0/panel.rc b/themes/Mint-Y-Watusi/gtk-2.0/panel.rc new file mode 100644 index 0000000..c877428 --- /dev/null +++ b/themes/Mint-Y-Watusi/gtk-2.0/panel.rc @@ -0,0 +1,153 @@ +style "theme-panel" { + + ythickness = 0 + + bg[NORMAL] = "#383838" + bg[ACTIVE] = @selected_bg_color + bg[PRELIGHT] = shade(1.1, @selected_bg_color) + bg[SELECTED] = @selected_bg_color + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + + text[NORMAL] = "#BAC3CF" + text[PRELIGHT] = "#BAC3CF" + text[ACTIVE] = "#BAC3CF" + text[SELECTED] = "#BAC3CF" + + engine "murrine" { + reliefstyle = 0 + glazestyle = 0 + glow_shade = 1.0 + highlight_shade = 1.0 + roundness = 0 + gradient_shades = {1.0,1.0,1.0,1.0} + textstyle = 0 + contrast = 0.0 + textstyle = 0 + } +} + +style "panelbar" { + + fg[NORMAL] = "#edf5fb" + fg[ACTIVE] = "#edf5fb" + fg[PRELIGHT] = "#edf5fb" + fg[SELECTED] = @selected_fg_color + + bg[SELECTED] = @selected_bg_color + + engine "murrine" {} +} + +style "panelbuttons" { + + xthickness = 4 + ythickness = 0 + + engine "murrine" { + textstyle = 0 + } +} + +style "theme-panel-text" { + + fg[NORMAL] = "#edf5fb" + fg[PRELIGHT] = @selected_fg_color + fg[ACTIVE] = "#edf5fb" + + text[NORMAL] = "#edf5fb" + text[PRELIGHT] = @selected_fg_color + text[ACTIVE] = "#edf5fb" + + engine "murrine" { + textstyle = 0 + text_shade = 0.2 + } +} + +style "panel-entry" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + fg[SELECTED] = @text_color + fg[INSENSITIVE] = @text_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @text_color + +} + +style "theme-main-menu-text" = "theme-panel-text" { + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "workspace-switcher" = "theme-panel" { + bg[SELECTED] = @selected_bg_color +} + +style "indicator" = "theme-panel" { + xthickness = 0 + ythickness = 0 +} + +widget "*tasklist*" style "panelbuttons" +widget_class "*Xfce*Panel*.GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*PanelToplevel*Button" style "panelbuttons" +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Xfce*Panel*Button*" style "panelbuttons" +widget_class "*" style "panelbuttons" +widget_class "**" style "panelbuttons" +widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" +widget "*dict*Applet*" style "panelbuttons" +widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" +widget_class "*Tasklist*" style:highest "panelbuttons" + +class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*" style "panelbar" +widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" + +widget "*PanelWidget*" style "theme-panel" +widget "*PanelApplet*" style "theme-panel" +widget "*fast-user-switch*" style "theme-panel" +widget "*CPUFreq*Applet*" style "theme-panel" +class "PanelApp*" style "theme-panel" +class "PanelToplevel*" style "theme-panel" +widget_class "*PanelToplevel*" style "theme-panel" +widget_class "*notif*" style "theme-panel" +widget_class "*Notif*" style "theme-panel" +widget_class "*Tray*" style "theme-panel" +widget_class "*tray*" style "theme-panel" +widget_class "*computertemp*" style "theme-panel" +widget_class "*Applet*Tomboy*" style "theme-panel" +widget_class "*Applet*Netstatus*" style "theme-panel" + +# Fixes for tooltip text in some apps. +widget_class "*Notif*Beagle*" style "theme-panel" +widget_class "*Notif*Brasero*" style "theme-panel" + +# XFCE panel theming. +widget "*Xfce*Panel*" style "theme-panel" +class "*Xfce*Panel*" style "theme-panel" +widget "*WnckPager*" style "workspace-switcher" + +# Fix gtk-entries in the panel +widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin + +# Make sure panel text color doesn't change +widget_class "*Panel*MenuBar*" style "theme-main-menu-text" +widget_class "*Panel**" style "theme-main-menu-text" +widget "*.clock-applet-button.*" style "theme-panel-text" +widget "*PanelApplet*" style "theme-panel-text" + +# Override general panel-style with specific plugin-styles +widget "*indicator-applet*" style "indicator" +widget "*indicator-button*" style "indicator" diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-dark.png new file mode 100644 index 0000000..78ee1e4 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png new file mode 100644 index 0000000..048c0d8 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png new file mode 100644 index 0000000..761ab63 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png new file mode 100644 index 0000000..93be191 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png new file mode 100644 index 0000000..1866d89 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png new file mode 100644 index 0000000..64bd31b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..3a908ee Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png new file mode 100644 index 0000000..aba0036 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selected.png new file mode 100644 index 0000000..e6e6b5d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png new file mode 100644 index 0000000..c376f40 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png new file mode 100644 index 0000000..e815fc2 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png new file mode 100644 index 0000000..2a4cf70 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png new file mode 100644 index 0000000..63680c7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png new file mode 100644 index 0000000..ee8b7a7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked-selectionmode@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked.png new file mode 100644 index 0000000..820df91 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked@2.png new file mode 100644 index 0000000..31c6c6f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-checked@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png new file mode 100644 index 0000000..00faa0e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png new file mode 100644 index 0000000..cd75c57 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png new file mode 100644 index 0000000..b5a1f97 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..c996734 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png new file mode 100644 index 0000000..9af9111 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..5f97b50 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..4e1891f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png new file mode 100644 index 0000000..78a24f7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png new file mode 100644 index 0000000..020a43c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png new file mode 100644 index 0000000..2b2638b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..030e87a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed@2.png new file mode 100644 index 0000000..d74ffc9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-mixed@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png new file mode 100644 index 0000000..193ed1f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png new file mode 100644 index 0000000..b635b41 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode.png new file mode 100644 index 0000000..03311ef Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png new file mode 100644 index 0000000..e979f8c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-selectionmode@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png new file mode 100644 index 0000000..a2d09a4 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png new file mode 100644 index 0000000..2b9318b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png new file mode 100644 index 0000000..481a15e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..ce95627 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png new file mode 100644 index 0000000..4b4356b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..bdafd33 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..90d0374 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png new file mode 100644 index 0000000..554d449 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png new file mode 100644 index 0000000..4d32106 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png new file mode 100644 index 0000000..7b361e3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..8fb129d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png new file mode 100644 index 0000000..e7ae8ef Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/checkbox-unchecked@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator-vertical.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator-vertical.png new file mode 100644 index 0000000..bf4f5d7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator-vertical.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png new file mode 100644 index 0000000..b82de17 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator-vertical@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator.png new file mode 100644 index 0000000..e7f1ca4 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator@2.png new file mode 100644 index 0000000..04870eb Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/pane-separator@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-dark.png new file mode 100644 index 0000000..4afee68 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-dark@2.png new file mode 100644 index 0000000..acaf956 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png new file mode 100644 index 0000000..e8fec8c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png new file mode 100644 index 0000000..3910f40 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png new file mode 100644 index 0000000..671fce0 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png new file mode 100644 index 0000000..5d4ae65 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..389d561 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png new file mode 100644 index 0000000..ac211f3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-insensitive@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-selected.png new file mode 100644 index 0000000..2b7741a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-selected@2.png new file mode 100644 index 0000000..822a0f3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked.png new file mode 100644 index 0000000..f9ec947 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked@2.png new file mode 100644 index 0000000..f0e70a3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-checked@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-dark.png new file mode 100644 index 0000000..27f99a8 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png new file mode 100644 index 0000000..c9e9a80 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png new file mode 100644 index 0000000..4aa9f0c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png new file mode 100644 index 0000000..08afe23 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png new file mode 100644 index 0000000..a9d6f2c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png new file mode 100644 index 0000000..72de2a9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..60eeb38 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png new file mode 100644 index 0000000..941e22a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-insensitive@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-selected.png new file mode 100644 index 0000000..f2f575e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png new file mode 100644 index 0000000..1fb81c8 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed.png new file mode 100644 index 0000000..0f6b00e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed@2.png new file mode 100644 index 0000000..c1a339a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-mixed@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-dark.png new file mode 100644 index 0000000..a80cc0c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png new file mode 100644 index 0000000..6f79041 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png new file mode 100644 index 0000000..cd28242 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png new file mode 100644 index 0000000..f7844b8 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png new file mode 100644 index 0000000..7e5c6e3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png new file mode 100644 index 0000000..1dd9a00 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..41ed4d9 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png new file mode 100644 index 0000000..a834953 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-insensitive@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-selected.png new file mode 100644 index 0000000..aba589e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png new file mode 100644 index 0000000..b820fd2 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked.png new file mode 100644 index 0000000..5259460 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked@2.png new file mode 100644 index 0000000..e1c0166 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/radio-unchecked@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-dark.png new file mode 100644 index 0000000..abee281 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-dark@2.png new file mode 100644 index 0000000..182411a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header-dark.png new file mode 100644 index 0000000..bea0fb5 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png new file mode 100644 index 0000000..bf810d5 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header.png new file mode 100644 index 0000000..3f18f1d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header@2.png new file mode 100644 index 0000000..3d6f051 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-header@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png new file mode 100644 index 0000000..a2e86b1 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png new file mode 100644 index 0000000..95d7dae Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png new file mode 100644 index 0000000..3721344 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png new file mode 100644 index 0000000..0926a59 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png new file mode 100644 index 0000000..1cf3b0d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png new file mode 100644 index 0000000..5ff1f15 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png new file mode 100644 index 0000000..1742a2b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png new file mode 100644 index 0000000..a615723 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive.png new file mode 100644 index 0000000..1cf3b0d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png new file mode 100644 index 0000000..5ff1f15 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-insensitive@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-selected.png new file mode 100644 index 0000000..411b79c Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-selected@2.png new file mode 100644 index 0000000..f96c09b Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active.png new file mode 100644 index 0000000..3f18f1d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active@2.png new file mode 100644 index 0000000..3d6f051 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-active@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-dark.png new file mode 100644 index 0000000..7feed19 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-dark@2.png new file mode 100644 index 0000000..d04c085 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header-dark.png new file mode 100644 index 0000000..5081ff1 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header-dark@2.png new file mode 100644 index 0000000..cd4b158 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header.png new file mode 100644 index 0000000..ee1fd7e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header@2.png new file mode 100644 index 0000000..df38f38 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-header@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-dark.png new file mode 100644 index 0000000..3e00b02 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png new file mode 100644 index 0000000..0e67ae2 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png new file mode 100644 index 0000000..89dee38 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png new file mode 100644 index 0000000..5603621 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header.png new file mode 100644 index 0000000..e0740ce Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png new file mode 100644 index 0000000..989db68 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-header@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-selected.png new file mode 100644 index 0000000..f4398f6 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png new file mode 100644 index 0000000..67ea825 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive.png new file mode 100644 index 0000000..a6607a7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive@2.png new file mode 100644 index 0000000..e9ce969 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-insensitive@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-selected.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-selected.png new file mode 100644 index 0000000..c2d2186 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-selected.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-selected@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-selected@2.png new file mode 100644 index 0000000..6e1b894 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch-selected@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch.png new file mode 100644 index 0000000..67886a1 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/switch@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch@2.png new file mode 100644 index 0000000..16a2578 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/switch@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active.png new file mode 100644 index 0000000..b736725 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png new file mode 100644 index 0000000..48187f2 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-active@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png new file mode 100644 index 0000000..7611f5d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png new file mode 100644 index 0000000..0c58794 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png new file mode 100644 index 0000000..47ec30d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png new file mode 100644 index 0000000..3a27f10 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-backdrop@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png new file mode 100644 index 0000000..8c4d68e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png new file mode 100644 index 0000000..a739431 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover.png new file mode 100644 index 0000000..3b084de Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png new file mode 100644 index 0000000..360e91a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close-hover@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close.png new file mode 100644 index 0000000..3b084de Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close@2.png new file mode 100644 index 0000000..360e91a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-close@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active.png new file mode 100644 index 0000000..d60f773 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png new file mode 100644 index 0000000..76250ef Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-active@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png new file mode 100644 index 0000000..0883ca7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png new file mode 100644 index 0000000..4542b7f Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png new file mode 100644 index 0000000..36858b0 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png new file mode 100644 index 0000000..061e356 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-backdrop@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-dark.png new file mode 100644 index 0000000..8addbf8 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png new file mode 100644 index 0000000..dedcc38 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png new file mode 100644 index 0000000..84a5583 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png new file mode 100644 index 0000000..d2ef62a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover.png new file mode 100644 index 0000000..128a39d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png new file mode 100644 index 0000000..66cdeda Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max-hover@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max.png new file mode 100644 index 0000000..14e5e3e Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max@2.png new file mode 100644 index 0000000..a1a13bb Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-max@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active.png new file mode 100644 index 0000000..b3842b7 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png new file mode 100644 index 0000000..265c6ef Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-active@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png new file mode 100644 index 0000000..b04db91 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png new file mode 100644 index 0000000..5b8cf4d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png new file mode 100644 index 0000000..b83cb7d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png new file mode 100644 index 0000000..f83b673 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-backdrop@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-dark.png new file mode 100644 index 0000000..b5c9732 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png new file mode 100644 index 0000000..29b6465 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png new file mode 100644 index 0000000..c38e8b3 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png new file mode 100644 index 0000000..59b63da Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover-dark@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover.png new file mode 100644 index 0000000..c250748 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png new file mode 100644 index 0000000..965ce3d Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min-hover@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min.png new file mode 100644 index 0000000..f4b6db0 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min@2.png b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min@2.png new file mode 100644 index 0000000..9a35819 Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/assets/titlebutton-min@2.png differ diff --git a/themes/Mint-Y-Watusi/gtk-3.0/gtk.css b/themes/Mint-Y-Watusi/gtk-3.0/gtk.css new file mode 100644 index 0000000..0c5e044 --- /dev/null +++ b/themes/Mint-Y-Watusi/gtk-3.0/gtk.css @@ -0,0 +1,3781 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #0d65b4; + -GtkWidget-visited-link-color: #094a85; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 6; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(74, 74, 74, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +.background { + color: #4a4a4a; + background-color: #F0F0F0; } + +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F0F0F0; + color: #4a4a4a; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #4a4a4a; } + .gtkstyle-fallback:active { + background-color: #d7d7d7; + color: #4a4a4a; } + .gtkstyle-fallback:insensitive { + background-color: #f9f9f9; + color: rgba(74, 74, 74, 0.55); } + .gtkstyle-fallback:selected { + background-color: #1080e4; + color: #ffffff; } + +.view { + color: #4a4a4a; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, .header-bar .view.subtitle { + color: rgba(74, 74, 74, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #0d65b4; + background-color: rgba(13, 101, 180, 0.2); } + +.label.separator, .popover .label.separator, .sidebar .label.view.separator { + color: #4a4a4a; } +.label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #d9d9d9; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #d9d9d9; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #1080e4; + color: #ffffff; } + +GtkTextView { + background-color: #f8f8f8; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .osd { + color: #C3C3C3; + border: none; + background-color: #454545; + background-clip: padding-box; + outline-color: rgba(195, 195, 195, 0.3); + box-shadow: none; } + +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +.entry { + border: 1px solid; + padding: 5px 8px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #4a4a4a; + border-color: #cfcfcf; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #4a4a4a; + border-color: #1080e4; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #1080e4; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #1080e4; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f7ae86); } + .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); + box-shadow: none; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fd8d88); } + .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); + box-shadow: none; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } + .entry.image { + color: #6e6e6e; } + .osd .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + .osd .entry.image, .osd .entry.image:hover { + color: inherit; } + .osd .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #1080e4); } + .osd .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkSearchEntry.entry { + border-radius: 4px; } + +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#1080e4), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1080e4), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .button.flat, .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 245, 245, 0); + border-color: rgba(207, 207, 207, 0); + transition: none; } + .button.flat:hover, .sidebar-button.button:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active, .sidebar-button.button:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; + transition-duration: 50ms; } + .button:active { + color: #4a4a4a; } + .button:active:hover, .button:checked { + color: #ffffff; } + .button.flat:insensitive, .sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(16, 128, 228, 0.75); + background-color: rgba(16, 128, 228, 0.75); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + background-color: #454545; + border-color: #313131; } + .button.osd.image-button, .header-bar .button.osd.titlebutton, + .titlebar .button.osd.titlebutton { + padding: 10px; } + .button.osd:hover { + color: #1080e4; } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + .button.osd:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button:active, .osd .button:checked { + background-clip: padding-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + .osd .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + .osd .button.flat, .osd .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover, .osd .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); + background-image: none; } + .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .button.suggested-action.flat, .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .button.suggested-action:active, .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.suggested-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.suggested-action:insensitive > GtkLabel { + color: inherit; } + .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .button.destructive-action.flat, .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .button.destructive-action:active, .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + color: rgba(74, 74, 74, 0.55); } + .button.destructive-action:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .button.destructive-action:insensitive > GtkLabel { + color: inherit; } + .button.image-button, .header-bar .button.titlebutton, + .titlebar .button.titlebutton { + padding: 7px; } + .header-bar .button.image-button, .header-bar .button.titlebutton { + padding: 7px 10px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, .header-bar .button.text-button.titlebutton, + .titlebar .button.text-button.titlebutton { + padding: 5px 8px; } + .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, + .titlebar .button.text-button.titlebutton GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, + .titlebar .button.text-button.titlebutton GtkLabel:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, + .titlebar .stack-switcher > .button.titlebutton { + padding: 2px 4px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1080e4), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .inline-toolbar GtkToolButton > .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.8); + border-color: rgba(16, 128, 228, 0.75); + background-color: rgba(16, 128, 228, 0.75); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(207, 207, 207, 0.3); } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #1080e4; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .entry + .button, +.linked:not(.vertical):not(.pathbar) > .entry + .button:hover, +.linked:not(.vertical):not(.pathbar) > .entry + .button:active, +.linked:not(.vertical):not(.pathbar) > .entry + .button:checked, +.linked:not(.vertical):not(.pathbar) > .entry + .button:insensitive { + border-left-style: solid; } +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #1080e4; } +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.linked:not(.vertical):not(.pathbar) > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked:not(.vertical):not(.pathbar) > .button:checked + .entry { + border-left-color: #1080e4; } +.linked:not(.vertical):not(.pathbar) > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(207, 207, 207, 0.4); } + .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(207, 207, 207, 0.4); } + +.linked.vertical > .entry + .entry { + border-top-color: rgba(207, 207, 207, 0.3); } +.linked.vertical > .entry.error + .entry, +.linked.vertical > .entry + .entry.error { + border-top-color: #FC4138; } +.linked.vertical > .entry.warning + .entry, +.linked.vertical > .entry + .entry.warning { + border-top-color: #F27835; } +.linked.vertical > .entry.error + .entry.warning { + border-top-color: #FC4138; } +.linked.vertical > .entry + .entry:focus:not(:last-child), +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #1080e4; } +.linked.vertical > .entry + .entry.warning:focus:not(:last-child), +.linked.vertical > .entry + .entry.warning:focus:last-child { + border-top-color: #F27835; } +.linked.vertical > .entry + .entry.error:focus:not(:last-child), +.linked.vertical > .entry + .entry.error:focus:last-child { + border-top-color: #FC4138; } +.linked.vertical > .entry + .button, +.linked.vertical > .entry + .button:hover, +.linked.vertical > .entry + .button:active, +.linked.vertical > .entry + .button:checked, +.linked.vertical > .entry + .button:insensitive { + border-top-style: solid; } +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #1080e4; } +.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, +.linked.vertical > .entry.warning:focus:not(:only-child) + .button, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #F27835; } +.linked.vertical > .entry.error:focus:not(:only-child) + .entry, +.linked.vertical > .entry.error:focus:not(:only-child) + .button, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #FC4138; } +.linked.vertical > .button:hover:not(:checked):not(:active):not(:only-child), +.linked.vertical > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: 0 -1px #cfcfcf; } +.linked.vertical > .button:first-child:hover:not(:checked):not(:active) { + box-shadow: none; } +.linked.vertical > .button:checked + .button:not(:checked):not(:active):hover { + box-shadow: none; } +.linked.vertical > .button:checked + .entry { + border-top-color: #1080e4; } +.linked.vertical > .entry + .button:not(:checked):not(:active):hover { + box-shadow: none; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, .linked:not(.vertical) > .button:hover, .linked:not(.vertical) > .button:active, .linked:not(.vertical) > .button:checked, .linked:not(.vertical):not(.pathbar) > .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover, +.header-bar .linked:not(.vertical).path-bar > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, +.primary-toolbar .linked:not(.vertical).path-bar > .button:active, +.header-bar .linked:not(.vertical).path-bar > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, +.primary-toolbar .linked:not(.vertical).path-bar > .button:checked, +.header-bar .linked:not(.vertical).path-bar > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, +.primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, +.header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + border-radius: 0; + border-right-style: none; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:first-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:first-child, +.header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:last-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:last-child, +.header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked:not(.vertical):not(.pathbar) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, +.primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:only-child, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:only-child, +.header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .entry, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + border-radius: 0; + border-bottom-style: none; } + +.linked.vertical > .button:first-child, .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +.linked.vertical > .button:last-child, .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-bottom-style: solid; } +.linked.vertical > .button:only-child, .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked { + border-top-style: none; } + .linked.vertical > .button:first-child { + border-top-style: solid; } + +.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, +.app-notification.frame .button.flat, +.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, +.app-notification.frame .button.flat:insensitive, +.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +.menuitem.button.flat, .menuitem.sidebar-button.button { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { + background-color: #e8e8e8; } + .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { + color: #4a4a4a; } + +*:link, .button:link, .button:visited { + color: #0d65b4; } + *:link:visited, .button:visited { + color: #094a85; } + *:selected *:link:visited, *:selected .button:visited { + color: #9fccf4; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #1080e4; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #e7f2fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #0d65b4; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #cfe6fa; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #cfe6fa; } + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(217, 217, 217, 0.6); + border-style: none none none solid; + color: #535353; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:insensitive { + color: rgba(74, 74, 74, 0.55); } + .spinbutton .button:active { + background-color: #1080e4; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #1080e4; + border-radius: 0; + box-shadow: none; } + +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 3px; } + GtkComboBox:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #1080e4; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #1080e4; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F0F0F0; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0.5); + border-radius: 3px; + background-color: rgba(69, 69, 69, 0.9); } + +.primary-toolbar, +.primary-toolbar .toolbar, +.primary-toolbar .inline-toolbar { + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #d9d9d9, #c7c7c7) 1 0 1 0; } + .primary-toolbar .label:insensitive, + .primary-toolbar .toolbar .label:insensitive, + .primary-toolbar .inline-toolbar .label:insensitive { + color: rgba(74, 74, 74, 0.55); } + +.inline-toolbar { + background-color: #e8e8e8; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F0F0F0; + border-style: solid; + border-color: #d9d9d9; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #e8e8e8; } + +.header-bar { + padding: 5px 5px 4px 5px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #c7c7c7; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; } + .csd .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .header-bar .title { + padding-left: 12px; + padding-right: 12px; } + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .header-bar.selection-mode, .header-bar.titlebar.selection-mode { + color: #ffffff; + background-color: #1080e4; + border-color: #0f75d1; + box-shadow: none; } + .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { + background-color: #1080e4; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { + color: #1080e4; + outline-color: rgba(16, 128, 228, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { + color: rgba(16, 128, 228, 0.4); + background-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } + .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { + background-color: #1080e4; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #d9d9d9; + border-color: #c7c7c7; } + .header-bar.default-decoration, .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, .csd .header-bar.default-decoration:backdrop { + padding-top: 5px; + padding-bottom: 5px; + background-color: #d9d9d9; + border-bottom-width: 0; } + .maximized .header-bar.default-decoration, .maximized .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized .csd .header-bar.default-decoration:backdrop { + background-color: #d9d9d9; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 4px 4px 0 0; + color: rgba(81, 67, 67, 0.9); + background-color: #d9d9d9; + box-shadow: inset 0 1px #e1e1e1; } + .csd .titlebar { + background-color: #d9d9d9; } + .titlebar:backdrop { + color: rgba(81, 67, 67, 0.6); + background-color: #e1e1e1; } + .csd .titlebar:backdrop { + background-color: #e1e1e1; } + .maximized .titlebar { + background-color: #d9d9d9; } + .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { + background-color: #e1e1e1; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, +.primary-toolbar .toolbar .separator, +.primary-toolbar .inline-toolbar .separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(81, 67, 67, 0) 25%, rgba(81, 67, 67, 0.25) 25%, rgba(81, 67, 67, 0.25) 75%, rgba(81, 67, 67, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: rgba(81, 67, 67, 0.75); } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #1080e4; + color: #ffffff; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #1080e4; + background-image: none; + background-color: transparent; } + .primary-toolbar .entry.warning, .header-bar .entry.warning { + color: #ffffff; + border-color: #F27835; + background-image: linear-gradient(to bottom, #e89f77); } + .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #F27835); } + .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { + background-color: #ffffff; + color: #F27835; } + .primary-toolbar .entry.error, .header-bar .entry.error { + color: #ffffff; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #ee7e78); } + .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { + color: #ffffff; + background-image: linear-gradient(to bottom, #FC4138); } + .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { + background-color: #ffffff; + color: #FC4138; } +.primary-toolbar .button, .header-bar .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + outline-offset: -3px; + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #1080e4; + background-clip: border-box; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button:insensitive > GtkLabel, + .primary-toolbar .toolbar .button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(16, 128, 228, 0.65); + background-color: rgba(16, 128, 228, 0.65); } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:active, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, +.header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child), +.primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active), +.header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { + box-shadow: none; } +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, +.primary-toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button, +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button, +.header-bar .linked:not(.vertical).path-bar > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, + .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:hover, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:hover, + .header-bar .linked:not(.vertical).path-bar > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, + .primary-toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:active, + .header-bar .linked:not(.vertical).path-bar > .button:active, + .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:checked, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:checked, + .header-bar .linked:not(.vertical).path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #1080e4; } + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, + .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:insensitive, + .header-bar .linked:not(.vertical).path-bar > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +.primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child), +.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child), +.header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + .primary-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, .header-bar .linked:not(.vertical).path-bar > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .primary-toolbar .inline-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child, + .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry { + border-left-color: rgba(81, 67, 67, 0); } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error + .entry.warning { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry:focus:last-child { + border-left-color: #1080e4; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.warning:focus:last-child { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:not(:last-child), +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry + .entry.error:focus:last-child { + border-left-color: #FC4138; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #1080e4; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #F27835; } +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .entry, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + .button, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.primary-toolbar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, +.header-bar .linked:not(.vertical):not(.pathbar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #FC4138; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #6db442; + outline-color: rgba(109, 180, 66, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.suggested-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #F04A50; + outline-color: rgba(240, 74, 80, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(81, 67, 67, 0.45); + background-color: rgba(217, 217, 217, 0); + border-color: rgba(217, 217, 217, 0); } + .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action.flat:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .toolbar .button.destructive-action:insensitive > GtkLabel, + .primary-toolbar .inline-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { + color: inherit; } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } + .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { + color: rgba(255, 255, 255, 0.4); } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(81, 67, 67, 0.9); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(81, 67, 67, 0.15); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(81, 67, 67, 0.6); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(81, 67, 67, 0.3); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: rgba(81, 67, 67, 0.9); + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { + border-right-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { + box-shadow: 1px 0 #1080e4; } +.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: none; } + .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { + box-shadow: -1px 0 #1080e4; } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(81, 67, 67, 0.25); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.25)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(81, 67, 67, 0.2)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, whitesmoke); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { + background-image: linear-gradient(to bottom, white); + border-color: rgba(81, 67, 67, 0.4); } + .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #ededed); + border-color: rgba(81, 67, 67, 0.4); } + +.path-bar .button { + padding: 5px 10px; } + .path-bar .button:first-child { + padding-left: 10px; } + .path-bar .button:last-child { + padding-right: 10px; } + .path-bar .button:only-child { + padding-left: 14px; + padding-right: 14px; } + .path-bar .button GtkLabel:last-child { + padding-left: 4px; } + .path-bar .button GtkLabel:first-child { + padding-right: 4px; } + .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 2px; + padding-bottom: 1px; } + +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(74, 74, 74, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #88c0f2; + border-top-color: rgba(74, 74, 74, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(74, 74, 74, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #70b3ef; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #2d6597; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #a5a5a5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #4a4a4a; } + GtkTreeView.view.expander:selected { + color: #b7d9f7; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; + background-image: linear-gradient(to bottom, #1080e4); } + GtkTreeView.view.progressbar:selected { + color: #1080e4; + box-shadow: none; + background-image: linear-gradient(to bottom, #ffffff); } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + color: #4a4a4a; + background-image: linear-gradient(to bottom, #cfcfcf); + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #6e6e6e; + background-color: #ededed; } + column-header .button:hover { + color: #1080e4; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #4a4a4a; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #1080e4; + box-shadow: inset 1px 1px 0 1px #1080e4, inset -1px 0 0 1px #1080e4, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + font-weight: bold; + padding: 3px 6px; + background-image: none; + border-style: none solid solid none; + border-radius: 0; + border-color: #d9d9d9; + /*border-image: linear-gradient(to bottom, + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch;*/ } + column-header .button:active, column-header .button:hover { + background-color: whitesmoke; } + column-header .button:active:hover { + color: #4a4a4a; } + column-header .button:insensitive { + border-color: #F0F0F0; + background-image: none; } + +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #d9d9d9; + color: rgba(81, 67, 67, 0.9); } + .menubar:backdrop { + color: rgba(81, 67, 67, 0.6); } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #1080e4; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(81, 67, 67, 0.3); + border-color: transparent; } + +.menu { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #d9d9d9; } + .csd .menu { + padding: 4px 0px; + border-radius: 2px; + border: none; } + .menu .menuitem { + padding: 5px; } + .menu .menuitem:hover { + color: #4a4a4a; + background-color: rgba(0, 0, 0, 0.05); + border: solid rgba(0, 0, 0, 0.12); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive { + color: rgba(74, 74, 74, 0.55); } + .menu .menuitem.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ededed; } + .menu.button.bottom { + border-top: 1px solid #ededed; } + .menu.button:hover { + background-color: #ededed; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.csd .popup { + border-radius: 2px; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +.popover { + padding: 2px; + border: 1px solid #cccccc; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +.notebook { + padding: 0; + background-color: #ffffff; + -GtkNotebook-initial-gap: 4; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #d9d9d9; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #F0F0F0; } + .notebook.header.frame { + border: 0px solid #d9d9d9; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #d9d9d9; } + .notebook.header.bottom { + box-shadow: inset 0 1px #d9d9d9; } + .notebook.header.right { + box-shadow: inset 1px 0 #d9d9d9; } + .notebook.header.left { + box-shadow: inset -1px 0 #d9d9d9; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 4px 15px; } + .notebook tab.left, .notebook tab.right { + padding: 4px 15px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + padding-top: 6px; + border-radius: 3.5px 2px 0 0; + border-width: 0; + border-top-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #ffffff, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + padding-bottom: 6px; + border-radius: 0 0 2px 3.5px; + border-width: 0; + border-bottom-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 -1px #ffffff, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right, .notebook tab.right { + padding-right: 17px; + border-radius: 0 3.5px 3.5px 0; + border-width: 0; + border-right-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #ffffff, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left, .notebook tab.left { + padding-left: 17px; + border-radius: 3.5px 0 0 3.5px; + border-width: 0; + border-left-width: 2px; + border-color: transparent; + background-color: rgba(255, 255, 255, 0); } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + background-color: rgba(255, 255, 255, 0.5); + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + background-color: #ffffff; + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #ffffff; } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(74, 74, 74, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(74, 74, 74, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #4a4a4a; } + .notebook tab .button { + padding: 0; + color: #848484; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #1080e4; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(74, 74, 74, 0.55); } + .notebook.arrow:hover { + color: rgba(74, 74, 74, 0.775); } + .notebook.arrow:active { + color: #4a4a4a; } + .notebook.arrow:insensitive { + color: rgba(74, 74, 74, 0.25); } + +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #7c7c7c; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #d9d9d9; } + .scrollbar .slider { + background-color: #aeaeae; } + .scrollbar .slider:hover { + background-color: #bebebe; } + .scrollbar .slider:prelight:active { + background-color: #1080e4; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #d9d9d9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 52; + -GtkSwitch-slider-height: 24; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough, +GtkInfoBar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough, +.primary-toolbar .toolbar GtkSwitch.trough, +.primary-toolbar .inline-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active, +GtkInfoBar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active, +.primary-toolbar .toolbar GtkSwitch.trough:active, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive, +GtkInfoBar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive, +GtkInfoBar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .toolbar GtkSwitch.trough:active:insensitive, +.primary-toolbar .inline-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, +GtkFileChooserDialog .dialog-vbox > .frame .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check, +GtkInfoBar .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive, +GtkInfoBar .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent, +GtkInfoBar .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive, +GtkInfoBar .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked, +GtkInfoBar .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive, +GtkInfoBar .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, +GtkFileChooserDialog .dialog-vbox > .frame .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio, +GtkInfoBar .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive, +GtkInfoBar .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent, +GtkInfoBar .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive, +GtkInfoBar .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked, +GtkInfoBar .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, +GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive, +GtkInfoBar .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(74, 74, 74, 0.55); } + +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; + color: alpha(currentColor,0.7); } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, whitesmoke); + border: 1px solid rgba(143, 143, 143, 0.5); + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #f8f8f8); + border-color: rgba(143, 143, 143, 0.3); } + .scale.slider:active { + background-image: linear-gradient(to bottom, #1080e4); + border-color: #1080e4; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, #454545); + border-color: #1080e4; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #1080e4); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #0d65b4); + border-color: #0d65b4; } + .list-row:selected .scale.slider, GtkInfoBar .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover, GtkInfoBar .scale.slider:hover { + background-image: linear-gradient(to bottom, #dbecfb); + border-color: #dbecfb; } + .list-row:selected .scale.slider:active, GtkInfoBar .scale.slider:active { + background-image: linear-gradient(to bottom, #88c0f2); + border-color: #88c0f2; } + .list-row:selected .scale.slider:insensitive, GtkInfoBar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #93c6f3); + border-color: #93c6f3; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfcfcf); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #1080e4); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(16, 128, 228, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 207, 207, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, #575757); + outline-color: rgba(195, 195, 195, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #1080e4); } + .list-row:selected .scale.trough, GtkInfoBar .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight, GtkInfoBar .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive, GtkInfoBar .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #93c6f3); } + .list-row:selected .scale.trough:insensitive, GtkInfoBar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(74, 74, 74, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #1080e4; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #1080e4; } + .list-row:selected .progressbar, GtkInfoBar .progressbar { + background-color: #ffffff; } + +.osd .scale.progressbar { + background-color: #1080e4; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfcfcf; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, GtkInfoBar GtkProgressBar.trough, GtkInfoBar .level-bar.trough { + background-color: rgba(0, 0, 0, 0.2); } + +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #1080e4; + background-color: #1080e4; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(74, 74, 74, 0.2); + border-color: rgba(74, 74, 74, 0.2); } + +.frame { + border: 1px solid #d9d9d9; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, .sidebar.separator, .sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton .sidebar.separator, GtkFontButton .sidebar .view.separator, .sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton .sidebar .vertical.view.separator, .sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +.list { + background-color: #ffffff; + border-color: #d9d9d9; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(0, 0, 0, 0.03); } +.list-row.activatable:active { + color: #4a4a4a; } +.list-row.activatable:selected:active { + color: #ffffff; } +.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { + background-color: #0e73cd; } +.list-row.activatable:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(16, 128, 228, 0.7); } + .list-row.activatable:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.activatable { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.activatable:hover { + transition: none; } + +.app-notification, +.app-notification.frame { + padding: 10px; + color: #C3C3C3; + background-color: #454545; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: #2c2c2c; } + .app-notification .button, + .app-notification.frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + .app-notification .button.flat, .app-notification .sidebar-button.button, + .app-notification.frame .button.flat, + .app-notification.frame .sidebar-button.button { + border-color: rgba(16, 128, 228, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; + background-clip: padding-box; } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #979797; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GtkCalendar { + color: #4a4a4a; + border: 1px solid #d9d9d9; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #1080e4; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #4a4a4a; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(74, 74, 74, 0.45); + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #4a4a4a; } + GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { + color: rgba(74, 74, 74, 0.55); + background-color: transparent; + background-image: none; } + GtkCalendar:inconsistent { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight { + color: #4a4a4a; } + +.dialog-action-area .button.text-button { + padding: 6px 16px; } + +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #d9d9d9; + border-bottom: 1px solid #c7c7c7; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F0F0F0; + border-color: #d9d9d9; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #d9d9d9; } + +.sidebar, .sidebar .view { + border: none; + background-color: #F0F0F0; } + +GtkSidebarRow.list-row { + padding: 0px; } +GtkSidebarRow .sidebar-revealer { + padding: 3px 14px 3px 12px; } +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #1080e4; } +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #d7d7d7; } +GtkPlacesSidebar.sidebar .list-row.activatable { + color: rgba(74, 74, 74, 0.8); + border-width: 0; + border-style: solid; } +.sidebar-button.button { + outline-radius: 50%; + border-radius: 50%; } + .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, + .titlebar .sidebar-button.button.titlebutton { + padding: 3px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } +GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { + background-color: transparent; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #d9d9d9; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator-vertical.png"), url("assets/pane-separator-vertical@2.png")); + background-repeat: no-repeat; + background-position: center; } + GtkPaned.wide.vertical .pane-separator { + color: #4a4a4a; + background-color: transparent; + border-style: none; + background-image: -gtk-scaled(url("assets/pane-separator.png"), url("assets/pane-separator@2.png")); + background-repeat: no-repeat; + background-position: center; } + +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #1080e4; + color: #ffffff; } + +.warning, +.error { + background-color: #F04A50; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #1080e4; + outline-color: rgba(16, 128, 228, 0.3); + background-color: #ffffff; + border-color: #ffffff; } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(16, 128, 228, 0.4); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.2); } + +.tooltip { + color: #4a4a4a; + border-radius: 2px; + border: 1px solid #d0d0d0; } + .tooltip.background { + background-color: #fbeaa0; + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + GtkColorSwatch#add-color-button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +.content-view { + background-color: #ffffff; } + .content-view:hover { + -gtk-image-effect: highlight; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + +GtkVolumeButton.button { + padding: 8px; } + +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(16, 128, 228, 0.2)), to(rgba(16, 128, 228, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(16, 128, 228, 0.2)), to(rgba(16, 128, 228, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(16, 128, 228, 0.2)), to(rgba(16, 128, 228, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(16, 128, 228, 0.2)), to(rgba(16, 128, 228, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.window-frame { + border-radius: 4px 4px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; + border-radius: 0; } + .window-frame.ssd { + border-radius: 4px 4px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup { + border-radius: 2px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #d9d9d9; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 8px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(217, 217, 217, 0); } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #1080e4; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + border-width: 0; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max.png"), url("assets/titlebutton-max@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop.png"), url("assets/titlebutton-max-backdrop@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover.png"), url("assets/titlebutton-max-hover@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active.png"), url("assets/titlebutton-max-active@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min.png"), url("assets/titlebutton-min@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop.png"), url("assets/titlebutton-min-backdrop@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover.png"), url("assets/titlebutton-min-hover@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active.png"), url("assets/titlebutton-min-active@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, +NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, +NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { + background-image: none; + background-color: #1080e4; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, +ScratchMainWindow .notebook tab.reorderable-page.top:active, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page, +ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, +ScratchMainWindow .notebook tab.top:active, +ScratchMainWindow .notebook tab.top.active-page, +ScratchMainWindow .notebook tab.top.active-page:hover, +EphyNotebook.notebook tab.reorderable-page.top:active, +EphyNotebook.notebook tab.reorderable-page.top.active-page, +EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, +EphyNotebook.notebook tab.top:active, +EphyNotebook.notebook tab.top.active-page, +EphyNotebook.notebook tab.top.active-page:hover, +MidoriNotebook .notebook tab.reorderable-page.top:active, +MidoriNotebook .notebook tab.reorderable-page.top.active-page, +MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, +MidoriNotebook .notebook tab.top:active, +MidoriNotebook .notebook tab.top.active-page, +MidoriNotebook .notebook tab.top.active-page:hover, +TerminalWindow .notebook tab.reorderable-page.top:active, +TerminalWindow .notebook tab.reorderable-page.top.active-page, +TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +TerminalWindow .notebook tab.top:active, +TerminalWindow .notebook tab.top.active-page, +TerminalWindow .notebook tab.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, +PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, +PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { + box-shadow: inset 0 1px #d9d9d9, inset 0 -1px #d9d9d9, inset 1px 0 #d9d9d9, inset -1px 0 #d9d9d9; } + +TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, +PantheonTerminalPantheonTerminalWindow .notebook tab.top { + padding-top: 7px; + border-top-width: 3px; } +TerminalWindow .notebook.header.top, +PantheonTerminalPantheonTerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #c7c7c7, inset 0 -1px #d9d9d9; } + +GtkHTML { + background-color: #ffffff; + color: #4a4a4a; } + GtkHTML:active { + color: #ffffff; + background-color: #1080e4; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalScreen { + -TerminalScreen-background-darkness: 0.9; + background-color: #3f3f3f; + color: #fff; } + +TerminalScreenContainer .scrollbar:not(.slider) { + border-color: transparent; + background-color: transparent; } + +TerminalWindow .notebook tab .button { + color: #848484; } + TerminalWindow .notebook tab .button:hover { + color: #4a4a4a; + border-color: #cfcfcf; + background-color: whitesmoke; } +TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { + color: #ff4d4d; } +TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { + color: #1080e4; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #4a4a4a; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #9d9d9d; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #cfe6fa; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; + background-color: #ffffff; } + +.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, +.titlebar .nautilus-circular-button.button.titlebutton { + border-radius: 50%; + outline-radius: 50%; + padding: 8px; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(74, 74, 74, 0.5); + border-color: rgba(49, 49, 49, 0.5); } + .disk-space-display.used { + background-color: rgba(16, 128, 228, 0.8); + border-color: rgba(13, 101, 180, 0.8); } + .disk-space-display.free { + background-color: #e8e8e8; + border-color: #cfcfcf; } + +NautilusListView .view { + border-bottom: 1px solid #d9d9d9; } + +NemoPlacesTreeView { + -NemoPlacesTreeView-disk-full-bg-color: #C3C3C3; + -NemoPlacesTreeView-disk-full-fg-color: #0d65b4; } + +NemoWindow EelEditableLabel.entry { + transition: none; } +NemoWindow .sidebar .frame { + border-width: 0; } +NemoWindow .sidebar .cell { + padding: 0 2px; } +NemoWindow .sidebar .scrollbar.vertical .trough { + background-color: transparent; } +NemoWindow .sidebar .scrollbar.vertical .slider { + background-color: #aeaeae; } + NemoWindow .sidebar .scrollbar.vertical .slider:hover { + background-color: #cfcfcf; } +NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #d9d9d9; } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { + background-color: rgba(255, 255, 255, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(81, 67, 67, 0.2); + background-color: #1080e4; } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { + color: rgba(81, 67, 67, 0.5); } +NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child) { + border-left-color: rgba(81, 67, 67, 0); } + NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:not(:first-child):not(:only-child):last-child { + border-left-color: rgba(81, 67, 67, 0); } + +.gedit-headerbar-paned { + color: #c7c7c7; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #1080e4; } + +.open-document-selector-name-label { + color: #4a4a4a; } + +.open-document-selector-path-label { + color: #a5a5a5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #848484; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #4a4a4a; } + +.gedit-document-panel-dragged-row { + border: 1px solid #d9d9d9; + background-color: #d7d7d7; + color: #4a4a4a; } + +GeditStatusbar { + border-top: 1px solid #d9d9d9; + background-color: #F0F0F0; } + +GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton.sidebar-button.button:prelight, +GeditStatusMenuButton:checked.button.flat, +GeditStatusMenuButton.sidebar-button.button:checked { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #d9d9d9; } + +.gedit-search-entry-occurrences-tag { + color: rgba(74, 74, 74, 0.6); + border: none; + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider { + background-color: whitesmoke; + padding: 6px; + border-color: #d9d9d9; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbWorkbench .floating-bar { + color: #4a4a4a; } + +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { + padding: 0 10px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { + color: inherit; } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { + color: rgba(81, 67, 67, 0.9); + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { + color: rgba(81, 67, 67, 0.9); + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, + GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { + border-left-style: none; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; } +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, +GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { + border-right-style: none; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; } + +GbPreferencesPageLanguage .entry { + border-radius: 3px 3px 0 0; } +GbPreferencesPageLanguage .frame { + border-top-width: 0; } + +GbEditorTweakWidget .linked.vertical > .entry { + border-bottom-style: solid; } +GbEditorTweakWidget GtkScrolledWindow { + border-top: none; } + +GbViewStack GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook, +#project_sidebar_header.focused { + background-color: #ffffff; } + +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { + border-radius: 3px 0 0 3px; } + +GbWorkspacePane GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbWorkspacePane:not(.focused) GtkBox.header.notebook { + background-color: #F0F0F0; } + +DhSidebar GtkSearchEntry.entry, +SymbolTree GtkSearchEntry.entry { + border-left: none; + border-right: none; + border-top: none; + border-radius: 0px; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #C3C3C3; + background-image: none; + background-color: #454545; + padding: 6px 6px 6px 6px; + border: none; } + +GbTerminalView { + background-color: #ffffff; + color: #4a4a4a; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #d9d9d9; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #ffffff; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #4a4a4a; } + +.xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox { + color: rgba(81, 67, 67, 0.9); + outline-color: rgba(81, 67, 67, 0.2); + border-color: rgba(81, 67, 67, 0.2); + background-color: rgba(245, 245, 245, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:hover, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:hover { + background-color: rgba(255, 255, 255, 0.9); } + .xreader-window .primary-toolbar .toolbar .button.the-button-in-the-combobox:insensitive, .xreader-window .primary-toolbar .inline-toolbar .button.the-button-in-the-combobox:insensitive { + color: rgba(81, 67, 67, 0.5); } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #1080e4; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(74, 74, 74, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #66b1f4; } + +.documents-entry-tag { + background-color: #1080e4; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + color: #ffffff; + background-color: #1a8aef; } + .documents-entry-tag:active { + color: #ffffff; + background-color: #0f75d1; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiSelectionContainer *:selected, +SynapseGuiViewVirgilio *:selected { + background-color: #1080e4; } + +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #C3C3C3; + background-image: linear-gradient(to bottom, #393939); } + +.gnome-panel-menu-bar.menubar { + color: #C3C3C3; + font: bold; } + +.gnome-panel-menu-bar.menubar .menu { + font: regular; } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #C3C3C3; } + +PanelApplet .button:hover { + color: #dddddd; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + background-clip: padding-box; + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #1080e4; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #1080e4; } + +WnckPager { + color: #626262; } + WnckPager:selected { + color: #1080e4; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #C3C3C3; + font: bold; } + +.xfce4-panel.panel { + background-color: #393939; } + .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { + color: #C3C3C3; + background-color: rgba(57, 57, 57, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { + border: none; + background-color: #535353; } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { + color: #1080e4; + border: none; + background-color: #272727; } + +.floating-bar { + background-color: #1080e4; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #1080e4; + outline-color: transparent; } +MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } +MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 3px; + padding-left: 4px; + padding-right: 4px; + color: rgba(81, 67, 67, 0.9); + border-color: rgba(81, 67, 67, 0.2); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: rgba(81, 67, 67, 0.9); + border-color: #1080e4; + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9)); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(81, 67, 67, 0.45); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #1080e4; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, white); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .panel-shadow { + background-image: none; + background-color: transparent; } + .panel .menu { + box-shadow: none; } + .panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + .panel .menu .window-frame.menu.csd, + .panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + .panel .menubar > .menuitem { + padding: 3px 6px; } + .panel .menubar > .menuitem:hover { + background-color: transparent; } + .panel .window-frame.menu.csd, + .panel .window-frame.popup.csd { + box-shadow: none; } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + .composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + .composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +WingpanelWidgetsIndicatorPopover.popover { + padding: 0; + text-shadow: none; + icon-shadow: none; } + WingpanelWidgetsIndicatorPopover.popover .menuitem { + padding: 5px; + outline-color: transparent; + text-shadow: none; + icon-shadow: none; + border: solid transparent; + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { + padding: 0 3px; } + WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0; } + WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { + color: rgba(74, 74, 74, 0.55); } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #4a4a4a; } + +.cs-header { + padding: 6px; + background-color: #ededed; } + +#panel_window { + background-color: #393939; + color: #C3C3C3; + font: bold; + box-shadow: inset 0 -1px #272727; } + #panel_window .menubar, + #panel_window .menubar > .menuitem { + background-color: transparent; + color: #C3C3C3; + font: bold; } + #panel_window .menubar .menuitem:insensitive { + color: rgba(195, 195, 195, 0.5); } + #panel_window .menubar .menuitem:insensitive GtkLabel { + color: inherit; } + #panel_window .menubar .menu .menuitem { + font: normal; } + +#login_window, +#shutdown_dialog, +#restart_dialog { + font: normal; + border-style: none; + background-color: transparent; + color: #4a4a4a; } + +#content_frame { + padding-bottom: 14px; + background-color: #F0F0F0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 1px 1px 0 1px; } + +#content_frame .button { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: whitesmoke; } + #content_frame .button:hover { + color: #4a4a4a; + outline-color: rgba(74, 74, 74, 0.3); + border-color: #cfcfcf; + background-color: white; } + #content_frame .button:active, #content_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #cfcfcf; + background-color: #1080e4; } + #content_frame .button:insensitive { + color: rgba(74, 74, 74, 0.55); + border-color: rgba(207, 207, 207, 0.55); + background-color: rgba(245, 245, 245, 0.55); } + #content_frame .button:insensitive > GtkLabel { + color: inherit; } + +#buttonbox_frame { + padding-top: 20px; + padding-bottom: 0px; + border-style: none; + background-color: #454545; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: solid rgba(0, 0, 0, 0.1); + border-width: 0 1px 1px 1px; + box-shadow: inset 0 1px #454545; } + +#buttonbox_frame .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + #buttonbox_frame .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + #buttonbox_frame .button:active, #buttonbox_frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + #buttonbox_frame .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +#login_window #user_combobox { + color: #4a4a4a; + font: 13px; } + #login_window #user_combobox .menu { + font: normal; } + +#user_image { + padding: 3px; + border-radius: 2px; } + +#shutdown_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #F04A50; + border-color: #F04A50; } + #shutdown_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #f4797e; + border-color: #f4797e; } + #shutdown_button.button:active, #shutdown_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #ec1b22; + border-color: #ec1b22; } + +#restart_button.button { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #6db442; + border-color: #6db442; } + #restart_button.button:hover { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #88c663; + border-color: #88c663; } + #restart_button.button:active, #restart_button.button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: #568f34; + border-color: #568f34; } + +#greeter_infobar { + border-bottom-width: 0; + font: bold; } + +.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { + color: #c7c7c7; } + +NemoWindow GtkEventBox { + background-color: #F0F0F0; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + -gtk-icon-style: regular; } + +GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, +NautilusWindow.csd.background, +NautilusWindow .list.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar, +NautilusWindow GtkPlacesSidebar.sidebar { + background-color: #454545; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { + border: 1px solid #1080e4; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, + NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + background-color: #5f5f5f; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { + border: none; + color: #C3C3C3; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { + color: rgba(195, 195, 195, 0.6); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { + background-color: rgba(195, 195, 195, 0.15); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, + NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { + color: inherit; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow GtkPlacesSidebar.sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator { + color: transparent; } +GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, +NautilusWindow.maximized GtkPlacesSidebar.sidebar { + background-color: #454545; } +GtkFileChooserDialog .sidebar-button.button, +NautilusWindow .sidebar-button.button { + color: #C3C3C3; } + GtkFileChooserDialog .sidebar-button.button:hover, + NautilusWindow .sidebar-button.button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog .sidebar-button.button:active, + NautilusWindow .sidebar-button.button:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + GtkFileChooserDialog .sidebar-button.button:not(:hover):not(:active) > GtkImage, + NautilusWindow .sidebar-button.button:not(:hover):not(:active) > GtkImage { + opacity: 0.5; } + +NemoWindow.csd.background, +NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454545; } + NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #C3C3C3; } + NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(195, 195, 195, 0.7); } + NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #1080e4; + color: #ffffff; } + NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #C3C3C3; } + NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow .sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454545; } + +NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, +MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { + background-color: #454545; } + +NautilusWindow NautilusWindowSlot { + background-color: #ffffff; } + +NautilusDesktopWindow NautilusWindowSlot { + background-color: transparent; } + +GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { + background-color: #454545; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar { + background-color: transparent; } +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-action-box { + background-color: #F0F0F0; } +GtkFileChooserDialog .dialog-vbox > .frame { + color: #C3C3C3; + border-color: transparent; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { + background-color: transparent; + border-color: #333333; } +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, +GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, +GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { + color: #C3C3C3; } + +FeedReaderreaderUI.background.csd > .titlebar .pane-separator, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, +FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd > .titlebar .pane-separator, +GeditWindow.background.csd.maximized > .titlebar .pane-separator, +GeditWindow.background.csd > .titlebar .pane-separator:backdrop, +GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { + background-color: #c7c7c7; } +FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } +FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, +GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { + background-color: #d9d9d9; } + FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, + GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { + background-color: #e1e1e1; } + +FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, +GeditWindow.background.csd > .titlebar { + background-color: transparent; } + +GeditWindow.background.csd { + background-color: transparent; } +GeditWindow.background .gedit-side-panel-paned .pane-separator { + background-color: #454545; } +GeditWindow.background .gedit-bottom-panel-paned .pane-separator { + background-color: #d9d9d9; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #454545; } + .maximized .gedit-document-panel { + background-color: #454545; } + .gedit-document-panel .list-row { + color: #C3C3C3; } + .gedit-document-panel .list-row { + background-color: rgba(195, 195, 195, 0); + border: solid rgba(195, 195, 195, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(195, 195, 195, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(195, 195, 195, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #1080e4; + border: solid #1080e4; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #1080e4; + border: solid #1080e4; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #C3C3C3; } + +GeditFileBrowserWidget { + background-color: #454545; } + .maximized GeditFileBrowserWidget { + background-color: #454545; } + GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #333333; } + GeditFileBrowserWidget .horizontal GtkComboBox { + color: #C3C3C3; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #C3C3C3; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #1080e4; } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, +GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, + GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { + color: #C3C3C3; + outline-color: rgba(195, 195, 195, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(143, 143, 143, 0.5); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, + GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, + GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: rgba(38, 38, 38, 0.4); + background-color: #1080e4; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { + color: #6b6b6b; + border-color: rgba(38, 38, 38, 0.4); + background-color: rgba(125, 125, 125, 0.25); } + +GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, +GtkFileChooserDialog .dialog-vbox > .frame .entry { + color: #C3C3C3; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.4)); + background-color: transparent; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, + GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { + color: inherit; } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, + GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { + color: #ffffff; + border-color: rgba(38, 38, 38, 0.4); + background-image: linear-gradient(to bottom, #1080e4); } + GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, + GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { + color: rgba(195, 195, 195, 0.55); + background-image: linear-gradient(to bottom, rgba(125, 125, 125, 0.25)); } + +GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, +MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { + background-color: #e9e9e9; + border: 1px solid rgba(0, 0, 0, 0.3); } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, +MarlinViewWindow .sidebar .scrollbar .trough, +MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } +GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, +NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, +MarlinViewWindow .sidebar .scrollbar .slider, +MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(233, 233, 233, 0.7); } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #f6f6f6; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #1080e4; } + GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, + NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + +@define-color theme_fg_color #4a4a4a; +@define-color theme_text_color #4a4a4a; +@define-color theme_bg_color #F0F0F0; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #1080e4; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #4a4a4a; +@define-color text_color #4a4a4a; +@define-color bg_color #F0F0F0; +@define-color base_color #ffffff; +@define-color selected_bg_color #1080e4; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #f9f9f9; +@define-color insensitive_fg_color alpha(#4a4a4a, 0.5); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #4a4a4a; +@define-color theme_unfocused_text_color #4a4a4a; +@define-color theme_unfocused_bg_color #F0F0F0; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #d9d9d9; +@define-color unfocused_borders #d9d9d9; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color content_view_bg #ffffff; +@define-color wm_title alpha(#514343, 0.8); +@define-color wm_unfocused_title alpha(#514343, 0.5); +@define-color wm_bg #d9d9d9; +@define-color wm_bg_unfocused #e1e1e1; +@define-color wm_highlight #e1e1e1; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f46067; +@define-color wm_button_close_hover_bg #f68086; +@define-color wm_button_close_active_bg #f13039; +@define-color wm_icon_close_bg #F8F8F9; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #1080e4; +@define-color wm_button_hover_border #D1D3DA; +@define-color wm_icon_bg #90949E; +@define-color wm_icon_unfocused_bg #B6B8C0; +@define-color wm_icon_hover_bg #7A7F8B; +@define-color wm_icon_active_bg #ffffff; diff --git a/themes/Mint-Y-Watusi/gtk-3.0/thumbnail.png b/themes/Mint-Y-Watusi/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..11a2f6a Binary files /dev/null and b/themes/Mint-Y-Watusi/gtk-3.0/thumbnail.png differ diff --git a/themes/Mint-Y-Watusi/index.theme b/themes/Mint-Y-Watusi/index.theme new file mode 100644 index 0000000..6138a7a --- /dev/null +++ b/themes/Mint-Y-Watusi/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Mint-Y-Watusi +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Mint-Y-Watusi +MetacityTheme=Mint-Y-Watusi +IconTheme=Mint-Y +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/Mint-Y-Watusi/metacity-1/button-bg.svg b/themes/Mint-Y-Watusi/metacity-1/button-bg.svg new file mode 100644 index 0000000..1f225b5 --- /dev/null +++ b/themes/Mint-Y-Watusi/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/metacity-1/button-border.svg b/themes/Mint-Y-Watusi/metacity-1/button-border.svg new file mode 100644 index 0000000..a1ab948 --- /dev/null +++ b/themes/Mint-Y-Watusi/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/metacity-1/close-icon.svg b/themes/Mint-Y-Watusi/metacity-1/close-icon.svg new file mode 100644 index 0000000..312fa9e --- /dev/null +++ b/themes/Mint-Y-Watusi/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/metacity-1/max-icon.svg b/themes/Mint-Y-Watusi/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/Mint-Y-Watusi/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/metacity-1/metacity-theme-2.xml b/themes/Mint-Y-Watusi/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..750a8eb --- /dev/null +++ b/themes/Mint-Y-Watusi/metacity-1/metacity-theme-2.xml @@ -0,0 +1,767 @@ + + + + Arc + horst3180 + horst3180 + 2015 + Arc Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Watusi/metacity-1/metacity-theme-3.xml b/themes/Mint-Y-Watusi/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..fd6437c --- /dev/null +++ b/themes/Mint-Y-Watusi/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1040 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#787878" /> +<constant name="C_title_unfocused" value="#9d9d9d" /> + +<constant name="C_wm_bg_focused" value="#d9d9d9" /> +<constant name="C_wm_bg_unfocused" value="#d9d9d9" /> + +<constant name="C_wm_border" value="#d0d0d0" /> + +<constant name="C_wm_highlight" value="#eeeeee" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(selected_bg_color,#1080e4)" /> +<constant name="C_button_close_bg_hover" value="shade/gtk:custom(selected_bg_color,#1080e4)/1.14" /> +<constant name="C_button_close_bg_active" value="shade/gtk:custom(selected_bg_color,#1080e4)/0.8" /> + +<constant name="C_icon_close_bg" value="#F8F8F8" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#fdfdfd" /> +<constant name="C_button_bg_active" value="#909090" /> + +<constant name="C_button_border_hover" value="#D1D1D1" /> + +<constant name="C_icon_bg_focused" value="#909090" /> +<constant name="C_icon_bg_unfocused" value="#B6B6B6" /> +<constant name="C_icon_bg_hover" value="#7A7A7A" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1" /> + <distance name="bottom_height" value="1" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!--chromium save dialog--> +<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> + <distance name="title_vertical_pad" value="0"/> + <distance name="bottom_height" value="1"/> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_tiled_right"> + <line x1="0" y1="0" x2="0" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_tiled_left"> + <line x1="width-1" y1="0" x2="width-1" y2="height" color="C_wm_border" /> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + +<draw_ops name="border_max"> + <line x1="1" y1="height-1" x2="width" y2="height-1" color="C_wm_border" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_max" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_left" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_tiled_right" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="normal_style_set"/> +<window type="modal_dialog" style_set="normal_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/Mint-Y-Watusi/metacity-1/min-icon.svg b/themes/Mint-Y-Watusi/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/Mint-Y-Watusi/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/metacity-1/thumbnail.png b/themes/Mint-Y-Watusi/metacity-1/thumbnail.png new file mode 100644 index 0000000..54ef44a Binary files /dev/null and b/themes/Mint-Y-Watusi/metacity-1/thumbnail.png differ diff --git a/themes/Mint-Y-Watusi/xfce-notify-4.0/gtkrc b/themes/Mint-Y-Watusi/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..aa8a02c --- /dev/null +++ b/themes/Mint-Y-Watusi/xfce-notify-4.0/gtkrc @@ -0,0 +1,72 @@ +style "notify-window" { + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#17191F" + XfceNotifyWindow::border-color-hover = "#17191F" + XfceNotifyWindow::border-radius = 3.0 + XfceNotifyWindow::border-width = 1.0 + XfceNotifyWindow::border-width-hover = 1.0 + + bg[NORMAL] = "#292C36" +} + +style "notify-button" { + bg[NORMAL] = "#434652" + bg[PRELIGHT] = "#5C6070" + bg[ACTIVE] = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#ffffff" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + roundness = 2 + textstyle = 0 + } +} + +style "notify-text" { + GtkWidget::link-color = "#5294E2" + + fg[NORMAL] = "#BAC3CF" + fg[PRELIGHT] = "#BAC3CF" + fg[ACTIVE] = "#BAC3CF" + + engine "murrine" { + textstyle = 0 + } +} + +style "notify-summary" { + font_name = "Bold" +} + +style "notify-progressbar" { + GtkProgressBar::min-horizontal-bar-height = 4 + + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#5294E2" + bg[ACTIVE] = "#1D1F26" + bg[SELECTED] = "#5294E2" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + border_shades = { 1.0, 1.0 } + trough_shades = { 1.0, 1.0 } + trough_border_shades = { 1.0, 1.0 } + progressbarstyle = 0 + roundness = 2 + textstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" +widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" +widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" +widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" diff --git a/themes/Mint-Y-Watusi/xfwm4/bottom-active.xpm b/themes/Mint-Y-Watusi/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..1191a44 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/bottom-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"1 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +".", +".", +"+"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/bottom-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/bottom-inactive.xpm new file mode 120000 index 0000000..9f10639 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/bottom-inactive.xpm @@ -0,0 +1 @@ +bottom-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/bottom-left-active.xpm b/themes/Mint-Y-Watusi/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..727a097 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/bottom-left-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"3 3 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++", +".++", +"..."}; diff --git a/themes/Mint-Y-Watusi/xfwm4/bottom-left-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/bottom-left-inactive.xpm new file mode 120000 index 0000000..d70de34 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1 @@ +bottom-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/bottom-right-active.xpm b/themes/Mint-Y-Watusi/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..0d6f9b5 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/bottom-right-active.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"3 3 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+", +"..+", +"+++"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/bottom-right-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/bottom-right-inactive.xpm new file mode 120000 index 0000000..d234cea --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1 @@ +bottom-right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/close-active.xpm b/themes/Mint-Y-Watusi/xfwm4/close-active.xpm new file mode 100644 index 0000000..f534cbf --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/close-active.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *close_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 30 1 ", +" c #9AB87C", +". c #9AB87D", +"X c #9CB97E", +"o c #9CB980", +"O c #9EBA82", +"+ c #A0BC83", +"@ c #A6BF8E", +"# c #A7BF8F", +"$ c #B9C8A9", +"% c #B9C9AA", +"& c #C4CEBA", +"* c #C5CEBB", +"= c #C9D9B9", +"- c #CCDBBD", +"; c #CFDDC1", +": c #D0DEC3", +"> c #D3D6D1", +", c #D4D6D1", +"< c #D4D6D2", +"1 c gray85", +"2 c #D5E1C9", +"3 c #D7E3CC", +"4 c #D8E3CC", +"5 c #D8E4CD", +"6 c #DCE6D2", +"7 c #EEEEEE", +"8 c #F4F7F2", +"9 c #FBFCFA", +"0 c gray99", +"q c #FDFDFD", +/* pixels */ +"777777777777777777777777", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"11111111,%@Xo@%>11111111", +"1111111&X. .o&1111111", +"111111&... ..X*111111", +"11111,X .+ o X,11111", +"11111%. .93XX30 $11111", +"11111@ -q540: . #11111", +"11111X -qq: .Xo11111", +"11111o. X4qq6X X11111", +"11111@.. 4q--q3 #11111", +"11111% 8= =8 . $11111", +"11111,X .+,11111", +"111111&X. .. &111111", +"1111111&+. XX&1111111", +"11111111,%#oX@%,11111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111", +"111111111111111111111111" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/close-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..5b4918b --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/close-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *close_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c gray71", +". c gray72", +"X c gray74", +"o c gray78", +"O c #CDCDCD", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #E9E9E9", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O. O#######", +"######O O######", +"#####@ . . @#####", +"#####o %# #% o#####", +"#####X +%##%+ X#####", +"##### +%%@ #####", +"#####. #%%# .#####", +"#####X #%++%# X#####", +"#####o $+ +$ o#####", +"#####@ .@#####", +"######O O######", +"#######+ O#######", +"########@oX Xo#########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/close-prelight.xpm b/themes/Mint-Y-Watusi/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..ad68f60 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/close-prelight.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char *close_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 28 1 ", +" c #9ABC78", +". c #9ABC79", +"X c #9BBD79", +"o c #9CBD7A", +"O c #9CBD7C", +"+ c #9EBE7E", +"@ c #A0C07F", +"# c #A6C28B", +"$ c #A7C28B", +"% c #B9CAA7", +"& c #B9CBA8", +"* c #C5CFBA", +"= c #C9DBB7", +"- c #C4D0B9", +"; c #CCDDBB", +": c #CEDEBE", +"> c #D3D6D0", +", c #D4D6D1", +"< c gray85", +"1 c #D0E0C1", +"2 c #D5E3C7", +"3 c #D6E4C9", +"4 c #D8E5CB", +"5 c #D8E5CC", +"6 c #EEEEEE", +"7 c #F4F7F1", +"8 c #FBFCFA", +"9 c #FDFDFD", +/* pixels */ +"666666666666666666666666", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<,%#oO#&><<<<<<<<", +"<<<<<<<-o. .O*<<<<<<<", +"<<<<<<-... ..o*<<<<<<", +"<<<<<,o @ @ O,<<<<<", +"<<<<<&o .83o.28 &<<<<<", +"<<<<<# ;94491 . $<<<<<", +"<<<<<o :991 ..O<<<<<", +"<<<<<O. .o4894Oo O<<<<<", +"<<<<<#. 49;;94. $<<<<<", +"<<<<<& 7= =7. &<<<<<", +"<<<<<,o oO,<<<<<", +"<<<<<<* . *<<<<<<", +"<<<<<<<*Oo oO*<<<<<<<", +"<<<<<<<<,&$oo$&,<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<", +"<<<<<<<<<<<<<<<<<<<<<<<<" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/close-pressed.xpm b/themes/Mint-Y-Watusi/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..99b07f2 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/close-pressed.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *close_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 32 1 ", +" c #7BA056", +". c #7CA057", +"X c #7FA25B", +"o c #7FA25C", +"O c #80A35D", +"+ c #82A55F", +"@ c #83A660", +"# c #8CAB6E", +"$ c #8DAB6F", +"% c #8EAC70", +"& c #A9BC96", +"* c #A9BC97", +"= c #B9CCA5", +"- c #BAC6AE", +"; c #BBC7AE", +": c #BBC6AF", +"> c #BDCFAA", +", c #BFD1AE", +"< c #C1D2B0", +"1 c #C2D3B2", +"2 c #C8D7B9", +"3 c #CAD9BC", +"4 c #CCDABE", +"5 c #D1DEC5", +"6 c #D1D4CD", +"7 c #D2D5CF", +"8 c gray85", +"9 c #EEEEEE", +"0 c #F2F5EE", +"q c #FAFBFA", +"w c gray99", +"e c #FDFDFD", +/* pixels */ +"999999999999999999999999", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888886&$XX$&688888888", +"8888888-O O-8888888", +"888888-. o-888888", +"888886+ @ + o688888", +"88888& q3..2e &88888", +"88888# >e43e< %88888", +"88888X ,ee< o88888", +"88888X O3we5X X88888", +"88888$ 2e,<w2 %88888", +"88888& 0= =0 *88888", +"888886+ +788888", +"888888- .-888888", +"8888888-+. @:8888888", +"888888886&$XX$&688888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888", +"888888888888888888888888" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/hide-active.xpm b/themes/Mint-Y-Watusi/xfwm4/hide-active.xpm new file mode 100644 index 0000000..9a3913c --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #808080", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/hide-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..8f9fee5 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *hide_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 3 1 ", +" c #B6B6B6", +". c gray85", +"X c #EEEEEE", +/* pixels */ +"XXXXXXXXXXXXXXXXXXXXXXXX", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"......... .........", +"......... .........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/hide-prelight.xpm b/themes/Mint-Y-Watusi/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..520c42f --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/hide-prelight.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *hide_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c gray48", +". c LightGray", +"X c gray84", +"o c gray85", +"O c #DFDFDF", +"+ c gray89", +"@ c #E4E4E4", +"# c #EEEEEE", +"$ c #F3F3F3", +"% c gray96", +"& c #FBFBFB", +"* c #FDFDFD", +/* pixels */ +"########################", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooOo..oOooooooooo", +"oooooooOX+$&&$@XOooooooo", +"ooooooOX%******$XOoooooo", +"ooooooX%********%Xoooooo", +"oooooO+**********+Oooooo", +"oooooX$**********$oooooo", +"oooooX&** **&.ooooo", +"ooooo.&** **&.ooooo", +"oooooo$**********$Xooooo", +"oooooO+**********+Oooooo", +"ooooooX%********$Xoooooo", +"ooooooOX$******$XOoooooo", +"oooooooOX@$&&$+XOooooooo", +"oooooooooOX..oOooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo", +"oooooooooooooooooooooooo" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/hide-pressed.xpm b/themes/Mint-Y-Watusi/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..8d7bd13 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/hide-pressed.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *hide_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c #CECECE", +"@ c gray85", +"# c #EEEEEE", +"$ c white", +/* pixels */ +"########################", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@O O@@@@@", +"@@@@@X X@@@@@", +"@@@@@. .@@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@ $$$$$$ @@@@@", +"@@@@@. .@@@@@", +"@@@@@X X@@@@@", +"@@@@@O O@@@@@", +"@@@@@@o o@@@@@@", +"@@@@@@@o o@@@@@@@", +"@@@@@@@@OX. .XO@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/left-active.xpm b/themes/Mint-Y-Watusi/xfwm4/left-active.xpm new file mode 100644 index 0000000..f42db54 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/left-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * left_active_xpm[] = { +"3 1 3 1", +" c None", +". c #BFBFBF", +"+ c #D9D9D9", +".++"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/left-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/left-inactive.xpm new file mode 120000 index 0000000..ebcf490 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/left-inactive.xpm @@ -0,0 +1 @@ +left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/maximize-active.xpm b/themes/Mint-Y-Watusi/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..de718db --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/maximize-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #909090", +". c #9F9F9F", +"X c gray65", +"o c #A9A9A9", +"O c #D7D7D7", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++X .+++++++++", +"+++++++++O++o +++++++++", +"+++++++++XO+Oo +++++++++", +"++++++++O X++Oo+++++++++", +"+++++++++ X++++++++++++", +"+++++++++. oO++++++++++", +"+++++++++O++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/maximize-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..8dcab42 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/maximize-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *maximize_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 7 1 ", +" c #B6B6B6", +". c #BCBCBC", +"X c gray74", +"o c gray76", +"O c #D8D8D8", +"+ c gray85", +"@ c #EEEEEE", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"+++++++++++o X+++++++++", +"++++++++++++o +++++++++", +"+++++++++X+++o +++++++++", +"+++++++++ XO+Oo+++++++++", +"++++++++O o++++++++++++", +"+++++++++. o+++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/maximize-prelight.xpm b/themes/Mint-Y-Watusi/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..998685b --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/maximize-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *maximize_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #939393", +"X c gray58", +"o c #A0A0A0", +"O c #A4A4A4", +"+ c #A7A7A7", +"@ c LightGray", +"# c gray84", +"$ c gray85", +"% c gray87", +"& c #E2E2E2", +"* c #E4E4E4", +"= c #EEEEEE", +"- c #F3F3F3", +"; c gray96", +": c #FBFBFB", +"> c #FDFDFD", +/* pixels */ +"========================", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$%&$@@$&%$$$$$$$$", +"$$$$$$$*#&-::-*#*$$$$$$$", +"$$$$$$*#;>>>>>>-#*$$$$$$", +"$$$$$%#;>>>>>>>>;#%$$$$$", +"$$$$$&&>>>:o X>>&&$$$$$", +"$$$$$$->>:>:+ >>-$$$$$$", +"$$$$$@:>>o:::+ >>:@$$$$$", +"$$$$$@:>> o>>:o>>:@$$$$$", +"$$$$$$->> +:>>>>-$$$$$$", +"$$$$$&*>>. X>>>>&&$$$$$", +"$$$$$%#->>>>>>>>;#%$$$$$", +"$$$$$$&#->>>>>>;#&$$$$$$", +"$$$$$$$*#&-::-&#*$$$$$$$", +"$$$$$$$$%&$#@$&%$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/maximize-pressed.xpm b/themes/Mint-Y-Watusi/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..b076be7 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/maximize-pressed.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *maximize_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 13 1 ", +" c #808080", +". c #848484", +"X c #9A9A9A", +"o c #AEAEAE", +"O c #CDCDCD", +"+ c LightGray", +"@ c gray84", +"# c gray85", +"$ c #DADADA", +"% c #E6E6E6", +"& c gray91", +"* c #EEEEEE", +"= c white", +/* pixels */ +"************************", +"########################", +"########################", +"########################", +"########################", +"########OX. .XO########", +"#######o o#######", +"######o o######", +"#####O O#####", +"#####X @==% X#####", +"#####. . @== .#####", +"##### #. += #####", +"##### =# @ #####", +"#####. ==@ .#####", +"#####X &==@. X#####", +"#####O O#####", +"######o o######", +"#######o o#######", +"########OX. .X+########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/menu-active.xpm b/themes/Mint-Y-Watusi/xfwm4/menu-active.xpm new file mode 100644 index 0000000..2400a36 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/menu-active.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *menu_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #909090", +". c #979797", +"X c #9D9D9D", +"o c gray63", +"O c gray66", +"+ c #B9B9B9", +"@ c #BCBCBC", +"# c #CDCDCD", +"$ c #D7D7D7", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%@.@%%@.+%%%%%%%%", +"%%%%%%%%+ OO +%%%%%%%%", +"%%%%%%%%%@. .@%%%%%%%%%", +"%%%%%%%%%%#oX#%%%%%%%%%%", +"%%%%%%%%%%%$%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/menu-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..f38b6e2 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/menu-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *menu_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray72", +"X c #BCBCBC", +"o c gray76", +"O c #CBCBCB", +"+ c #CDCDCD", +"@ c LightGray", +"# c #D5D5D5", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$O.O$$O.O$$$$$$$$", +"$$$$$$$$O oo O$$$$$$$$", +"$$$$$$$$$+.. +$$$$$$$$$", +"$$$$$$$$$$#XX@$$$$$$$$$$", +"$$$$$$$$$$$#$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/menu-pressed.xpm b/themes/Mint-Y-Watusi/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..1951c18 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/menu-pressed.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *menu_pressed[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c gray58", +"X c gray62", +"o c gray64", +"O c gray65", +"+ c #B6B6B6", +"@ c #B9B9B9", +"# c gray75", +"$ c #C0C0C0", +"% c gray81", +"& c #D0D0D0", +"* c #D7D7D7", +"= c gray85", +"- c #E6E6E6", +"; c #EEEEEE", +": c #F4F4F4", +"> c #F9F9F9", +", c white", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"========================", +"========================", +"========================", +"========================", +"========&O. O&========", +"=======+ +=======", +"======+ @======", +"=====& &=====", +"=====O O=====", +"=====. #:# @:# .=====", +"===== $,,=*,,$ =====", +"===== @>,,>@ =====", +"=====. X-;o =====", +"=====O . O=====", +"=====% &=====", +"======+ +======", +"=======+ +=======", +"========&O. .O&========", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/right-active.xpm b/themes/Mint-Y-Watusi/xfwm4/right-active.xpm new file mode 100644 index 0000000..bbfecc2 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/right-active.xpm @@ -0,0 +1,7 @@ +/* XPM */ +static char * right_active_xpm[] = { +"3 1 3 1", +" c None", +". c #D9D9D9", +"+ c #BFBFBF", +"..+"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/right-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/right-inactive.xpm new file mode 120000 index 0000000..6734f48 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/right-inactive.xpm @@ -0,0 +1 @@ +right-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/shade-active.xpm b/themes/Mint-Y-Watusi/xfwm4/shade-active.xpm new file mode 100644 index 0000000..798916e --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/shade-active.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *shade_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 16 1 ", +" c #909090", +". c gray57", +"X c #989898", +"o c gray63", +"O c #A4A4A4", +"+ c #A9A9A9", +"@ c #B2B2B2", +"# c gray71", +"$ c gray", +"% c #C0C0C0", +"& c gray78", +"* c #C8C8C8", +"= c #D2D2D2", +"- c gray83", +"; c gray85", +": c #EEEEEE", +/* pixels */ +"::::::::::::::::::::::::", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;=+O=;;;;;;;;;;", +";;;;;;;;;*X .X*;;;;;;;;;", +";;;;;;;;%.. ...$;;;;;;;;", +";;;;;;;;#.@. #.@;;;;;;;;", +";;;;;;;;;=;. ;=;;;;;;;;;", +";;;;;;;;;;;. ;;;;;;;;;;;", +";;;;;;;;;;;..;;;;;;;;;;;", +";;;;;;;;;;;oo;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;", +";;;;;;;;;;;;;;;;;;;;;;;;" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/shade-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..7724327 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/shade-inactive.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *shade_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 12 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray", +"O c #C0C0C0", +"+ c gray78", +"@ c gray80", +"# c #CDCDCD", +"$ c gray82", +"% c #D5D5D5", +"& c gray85", +"* c #EEEEEE", +/* pixels */ +"************************", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&%oO%&&&&&&&&&&", +"&&&&&&&&&$X.XX#&&&&&&&&&", +"&&&&&&&&#.....X@&&&&&&&&", +"&&&&&&&&+.+..+.+&&&&&&&&", +"&&&&&&&&&%&..&%&&&&&&&&&", +"&&&&&&&&&&&..$&&&&&&&&&&", +"&&&&&&&&&&&..&&&&&&&&&&&", +"&&&&&&&&&&&oo&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&", +"&&&&&&&&&&&&&&&&&&&&&&&&" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/shade-prelight.xpm b/themes/Mint-Y-Watusi/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..96eb5a1 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/shade-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c gray62", +"+ c gray65", +"@ c #BBBBBB", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=&%%*=*********", +"*******=&;><<>;&=*******", +"******=&,111111>&=******", +"******&,11,+O><1,&******", +"*****=-11=X X*11-=*****", +"*****&>1%. .$1>******", +"*****&<1@ @ #.@1<%*****", +"*****%<1<<1 1,11<%*****", +"******>1111 1111>&*****", +"*****=;1111 1111-=*****", +"******&>111oo111>&******", +"******=&>111111>&=******", +"*******=&;><<>-&=*******", +"*********=&%%*=*********", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/shade-toggled-active.xpm b/themes/Mint-Y-Watusi/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..b0c23b5 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *shade_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 14 1 ", +" c #909090", +". c #989898", +"X c #A0A0A0", +"o c gray65", +"O c #A9A9A9", +"+ c #B2B2B2", +"@ c gray71", +"# c gray", +"$ c #C0C0C0", +"% c #C8C8C8", +"& c gray83", +"* c gray84", +"= c gray85", +"- c #EEEEEE", +/* pixels */ +"------------------------", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"===========XX===========", +"=========== ===========", +"=========== ===========", +"=========*= =*=========", +"========@ + @ @========", +"========# #========", +"=========%. .%=========", +"==========*Oo*==========", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================", +"========================" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/shade-toggled-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..129b31b --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *shade_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 10 1 ", +" c #B6B6B6", +". c gray73", +"X c gray", +"o c #C0C0C0", +"O c gray78", +"+ c gray80", +"@ c gray82", +"# c #D7D7D7", +"$ c gray85", +"% c #EEEEEE", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$XX$$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $$$$$$$$$$$", +"$$$$$$$$$$$ $#$$$$$$$$$", +"$$$$$$$$O O O O$$$$$$$$", +"$$$$$$$$+ +$$$$$$$$", +"$$$$$$$$$@. .@$$$$$$$$$", +"$$$$$$$$$$$oo#$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$", +"$$$$$$$$$$$$$$$$$$$$$$$$" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/shade-toggled-prelight.xpm b/themes/Mint-Y-Watusi/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..21aa1ef --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *shade_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 20 1 ", +" c gray48", +". c #7C7C7C", +"X c #898989", +"o c gray60", +"O c #A2A2A2", +"+ c gray65", +"@ c gray73", +"# c gray74", +"$ c #CDCDCD", +"% c LightGray", +"& c gray84", +"* c gray85", +"= c #DFDFDF", +"- c gray89", +"; c #E4E4E4", +": c #EEEEEE", +"> c #F3F3F3", +", c gray96", +"< c #FBFBFB", +"1 c #FDFDFD", +/* pixels */ +"::::::::::::::::::::::::", +"************************", +"************************", +"************************", +"************************", +"*********=*%%*=*********", +"*******=&-><<>;&=*******", +"******=&,111111>&=******", +"******&,111oo111,&******", +"*****=-1111 1111-=*****", +"*****&>1111 1111>&*****", +"*****&<11,1 <<11<%*****", +"*****%<1#.@ @.@1<%*****", +"******>1% .$1>******", +"*****=-1<=X X=<1-=*****", +"******&>11,+O>11,&******", +"******=&>111111,&=******", +"*******=&;><<>;&=*******", +"*********=&%%&=*&*******", +"************************", +"************************", +"************************", +"************************", +"************************" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/stick-active.xpm b/themes/Mint-Y-Watusi/xfwm4/stick-active.xpm new file mode 100644 index 0000000..d051f7a --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/stick-active.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *stick_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 15 1 ", +" c #939393", +". c gray59", +"X c #989898", +"o c gray62", +"O c #AFAFAF", +"+ c gray70", +"@ c #B4B4B4", +"# c #C1C1C1", +"$ c #C8C8C8", +"% c #CBCBCB", +"& c gray80", +"* c #D2D2D2", +"= c #D5D5D5", +"- c gray85", +"; c #EEEEEE", +/* pixels */ +";;;;;;;;;;;;;;;;;;;;;;;;", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"--------*+o o@*--------", +"-------#.O%==%O.#-------", +"------#X&------%X#------", +"-----*.&--------%.*-----", +"-----++----------O+-----", +"-----o%----------%o-----", +"----= =----------= -----", +"-----.=----------= -----", +"-----o%=---------%o-----", +"-----@O----------O@-----", +"-----*.%--------&.*-----", +"------#X%------%X#------", +"-------#.O%=*%O.#-------", +"--------*+o. o@=--------", +"------------------------", +"------------------------", +"------------------------", +"------------------------", +"------------------------" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/stick-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..4031c8d --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/stick-inactive.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *stick_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 9 1 ", +" c #B7B7B7", +". c gray73", +"X c gray74", +"o c gray78", +"O c #CECECE", +"+ c gray82", +"@ c gray84", +"# c gray85", +"$ c #EEEEEE", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"########################", +"########################", +"########################", +"########################", +"########@oX Xo@########", +"#######O.o+#@+o.O#######", +"######O.+@#####+.O######", +"#####@.+########+.@#####", +"#####oo##########oo#####", +"#####.+##########+X#####", +"#####.###########@ #####", +"##### ###########@.#####", +"#####X+##########+X#####", +"#####oo##########oo#####", +"#####@.+########+.@#####", +"######O.+#####@+.O######", +"#######O o+@#+o.O#######", +"########@oX Xo@########", +"########################", +"########################", +"########################", +"########################", +"########################" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/stick-prelight.xpm b/themes/Mint-Y-Watusi/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..52a81d0 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/stick-prelight.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c gray70", +". c #B4B4B4", +"X c #B9B9B9", +"o c #C3C3C3", +"O c LightGray", +"+ c gray85", +"@ c gray87", +"# c gray88", +"$ c #EEEEEE", +"% c gray96", +"& c #FDFDFD", +/* pixels */ +"$$$$$$$$$$$$$$$$$$$$$$$$", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++OX . XO++++++++", +"+++++++o.X@%%+X o+++++++", +"++++++o #&&&&&&@.o++++++", +"+++++O.#&&&&&&&&@.O+++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++ +&&&&&&&&&&+ +++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++.%&&&&&&&&&&%.+++++", +"+++++ @&&&&&&&&&&+ +++++", +"+++++XX&&&&&&&&&&XX+++++", +"+++++O.@&&&&&&&&@.O+++++", +"++++++o.@&&&&&&@.o++++++", +"+++++++o X+%%+X.o+++++++", +"++++++++OX ...XO++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/stick-toggled-active.xpm b/themes/Mint-Y-Watusi/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..6e61192 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *stick_toggled_active[] = { +/* columns rows colors chars-per-pixel */ +"24 24 18 1 ", +" c #909090", +". c #939393", +"X c gray59", +"o c #989898", +"O c gray62", +"+ c #A7A7A7", +"@ c gray66", +"# c #AFAFAF", +"$ c gray70", +"% c #B4B4B4", +"& c #C1C1C1", +"* c #C8C8C8", +"= c #CBCBCB", +"- c gray80", +"; c #D2D2D2", +": c #D5D5D5", +"> c gray85", +", c #EEEEEE", +/* pixels */ +",,,,,,,,,,,,,,,,,,,,,,,,", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>;$O..O%;>>>>>>>>", +">>>>>>>&X#=::=#X&>>>>>>>", +">>>>>>&o->>>>>>=o&>>>>>>", +">>>>>;X->;+X.+=>=X;>>>>>", +">>>>>$$>-X .;>#$>>>>>", +">>>>>O=:@ .+>=O>>>>>", +">>>>>.:>X. .>:.>>>>>", +">>>>>X:>. X>:X>>>>>", +">>>>>O=>+ +:=O>>>>>", +">>>>>%$>=X. .X;>#%>>>>>", +">>>>:;X->-+..+;:=X:>>>>>", +">>>>>>&X=>>>>>:-o&>>>>>>", +">>>>>>>&X#=:;=$X&>>>>>>>", +">>>>>>>>:$O..O%;>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>", +">>>>>>>>>>>>>>>>>>>>>>>>" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/stick-toggled-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..e9fdd0e --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *stick_toggled_inactive[] = { +/* columns rows colors chars-per-pixel */ +"24 24 11 1 ", +" c #B6B6B6", +". c #B7B7B7", +"X c gray73", +"o c gray74", +"O c #C1C1C1", +"+ c gray78", +"@ c #CECECE", +"# c gray82", +"$ c gray84", +"% c gray85", +"& c #EEEEEE", +/* pixels */ +"&&&&&&&&&&&&&&&&&&&&&&&&", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%@X+#%$#+X@%%%%%%%", +"%%%%%%@X#$%%%%%#X@%%%%%%", +"%%%%%$X#%$XX.o$%#X$%%%%%", +"%%%%%++%$X.....$%++%%%%%", +"%%%%%X#%O......O%#o%%%%%", +"%%%%%X%%........%$.%%%%%", +"%%%%%.%%. ... .%$X%%%%%", +"%%%%%o#%X......o%#o%%%%%", +"%%%%%++%$......#%++%%%%%", +"%%%%%$.#%$OX.O$%#X$%%%%%", +"%%%%%%@X#%%%%%$#X@%%%%%%", +"%%%%%%%@.+#$%#+X@%%%%%%%", +"%%%%%%%%$+o..o+$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/stick-toggled-prelight.xpm b/themes/Mint-Y-Watusi/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..417902c --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *stick_toggled_prelight[] = { +/* columns rows colors chars-per-pixel */ +"24 24 17 1 ", +" c gray48", +". c #838383", +"X c gray64", +"o c #A4A4A4", +"O c gray70", +"+ c #B4B4B4", +"@ c #B9B9B9", +"# c #C3C3C3", +"$ c LightGray", +"% c gray85", +"& c gray87", +"* c gray88", +"= c #E9E9E9", +"- c #EEEEEE", +"; c #F3F3F3", +": c gray96", +"> c #FDFDFD", +/* pixels */ +"------------------------", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%$@OO+O@$%%%%%%%%", +"%%%%%%%#+@&::%@O#%%%%%%%", +"%%%%%%#O*>>>>>>&+#%%%%%%", +"%%%%%$+&>-X. o=>&+$%%%%%", +"%%%%%@@>-. .;>@@%%%%%", +"%%%%%O&>o o>%O%%%%%", +"%%%%%O:>. .>:+%%%%%", +"%%%%%+:>. .>:+%%%%%", +"%%%%%+&>X o>%O%%%%%", +"%%%%%@+>=. .->@@%%%%%", +"%%%%%$+&>-X..o->&+$%%%%%", +"%%%%%%#O&>>>>>>&+#%%%%%%", +"%%%%%%%#O@%::%@+#%%%%%%%", +"%%%%%%%%$@O+++@$%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%%%%%%%%%%%%" +}; diff --git a/themes/Mint-Y-Watusi/xfwm4/themerc b/themes/Mint-Y-Watusi/xfwm4/themerc new file mode 100644 index 0000000..4e3833f --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/themerc @@ -0,0 +1,25 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=false +title_shadow_inactive=false + +#button_layout=O|HMC + +active_text_color=#787878 +#active_text_shadow_color=#e7e8eb +inactive_text_color=#9d9d9d +#inactive_text_shadow_color=#e7e8eb + +#placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-5 +shadow_opacity=50 + +show_frame_shadow=true +show_popup_shadow=true diff --git a/themes/Mint-Y-Watusi/xfwm4/title-1-active-shaded.xpm b/themes/Mint-Y-Watusi/xfwm4/title-1-active-shaded.xpm new file mode 100644 index 0000000..662295d --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-1-active-shaded.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_shaded_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEFF1", +"+ c #E7E8EB", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/title-1-active.xpm b/themes/Mint-Y-Watusi/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..209bb16 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-1-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/title-1-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/title-1-inactive.xpm new file mode 120000 index 0000000..def55f7 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-1-inactive.xpm @@ -0,0 +1 @@ +title-1-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/title-2-active.xpm b/themes/Mint-Y-Watusi/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..a3cfe4a --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-2-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/title-2-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/title-2-inactive.xpm new file mode 120000 index 0000000..a37458a --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-2-inactive.xpm @@ -0,0 +1 @@ +title-2-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/title-3-active.xpm b/themes/Mint-Y-Watusi/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..f9df553 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-3-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/title-3-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/title-3-inactive.xpm new file mode 120000 index 0000000..66e6af7 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-3-inactive.xpm @@ -0,0 +1 @@ +title-3-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/title-4-active.xpm b/themes/Mint-Y-Watusi/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..87e3fb4 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-4-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/title-4-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/title-4-inactive.xpm new file mode 120000 index 0000000..069dba6 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-4-inactive.xpm @@ -0,0 +1 @@ +title-4-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/title-5-active.xpm b/themes/Mint-Y-Watusi/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..48bee41 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-5-active.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 3 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"........................", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++", +"++++++++++++++++++++++++"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/title-5-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/title-5-inactive.xpm new file mode 120000 index 0000000..dcc7946 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/title-5-inactive.xpm @@ -0,0 +1 @@ +title-5-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/top-left-active-shaded.xpm b/themes/Mint-Y-Watusi/xfwm4/top-left-active-shaded.xpm new file mode 100644 index 0000000..47dc7df --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/top-left-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_left_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #E8E9EB", +"# c #E7E8EB", +" .+++", +".@###", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####", +"#####"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/top-left-active.xpm b/themes/Mint-Y-Watusi/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..ef737a9 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/top-left-active.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 7 1", +" c None", +". c #ECEDF0", +"+ c #EEEFF1", +"@ c #DFDFE0", +"# c #DADADA", +"$ c #D9D9D9", +"% c #BFBFBF", +" .+++", +".@#$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$", +"%$$$$"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/top-left-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/top-left-inactive.xpm new file mode 120000 index 0000000..0517526 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/top-left-inactive.xpm @@ -0,0 +1 @@ +top-left-active.xpm \ No newline at end of file diff --git a/themes/Mint-Y-Watusi/xfwm4/top-right-active-shaded.xpm b/themes/Mint-Y-Watusi/xfwm4/top-right-active-shaded.xpm new file mode 100644 index 0000000..4920284 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/top-right-active-shaded.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_shaded_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEFF1", +"+ c #ECEDF0", +"@ c #E7E8EB", +"# c #E8E9EB", +"...+ ", +"@@@#+", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@", +"@@@@@"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/top-right-active.xpm b/themes/Mint-Y-Watusi/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..5b57971 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/top-right-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 5 1", +" c None", +". c #EEEEEE", +"+ c #D9D9D9", +"@ c #DFDFE0", +"# c #BFBFBF", +".... ", +"+++@.", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#", +"++++#"}; diff --git a/themes/Mint-Y-Watusi/xfwm4/top-right-inactive.xpm b/themes/Mint-Y-Watusi/xfwm4/top-right-inactive.xpm new file mode 120000 index 0000000..42cae62 --- /dev/null +++ b/themes/Mint-Y-Watusi/xfwm4/top-right-inactive.xpm @@ -0,0 +1 @@ +top-right-active.xpm \ No newline at end of file