diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
commit | c853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch) | |
tree | 7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /share/ui/Minwaita-Inkscape.css | |
parent | Initial commit. (diff) | |
download | inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.tar.xz inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.zip |
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/ui/Minwaita-Inkscape.css')
-rw-r--r-- | share/ui/Minwaita-Inkscape.css | 164 |
1 files changed, 164 insertions, 0 deletions
diff --git a/share/ui/Minwaita-Inkscape.css b/share/ui/Minwaita-Inkscape.css new file mode 100644 index 0000000..0e84cb7 --- /dev/null +++ b/share/ui/Minwaita-Inkscape.css @@ -0,0 +1,164 @@ +/* Minwaita-Inkscape SPECIFIC STYLE */ + + +/* + * Keep as small as possible + */ + +toolbar toolbutton > button:disabled, toolbar toolbutton > button:backdrop:disabled, .toolbar toolbutton > button:disabled, .toolbar toolbutton > button:backdrop:disabled { + -gtk-icon-effect: dim; +} + +scrollbar { + margin: -1px; +} + +filechooser #pathbarbox button { + color: #2e3436; + outline-color: rgba(46, 52, 54, 0.3); + border-color: #c4c4bf; + border-bottom-color: #a0a097; + background-image: linear-gradient(to bottom, #f5f5f4, #ebebe9 60%, #ddddd9); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white; +} + +filechooser #pathbarbox button:hover { + color: #2e3436; + outline-color: rgba(46, 52, 54, 0.3); + border-color: #c4c4bf; + border-bottom-color: #a0a097; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white; + background-image: linear-gradient(to bottom, white, #f5f5f4 60%, #ebebe9); +} + +filechooser #pathbarbox button:active { + color: #2e3436; + outline-color: rgba(46, 52, 54, 0.3); + border-color: #c4c4bf; + background-image: image(#e6e6e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; +} + +filechooser #pathbarbox button:disabled { + border-color: #c4c4bf; + background-image: image(#f9f9f8); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); +} + +filechooser #pathbarbox button:disabled label, filechooser #pathbarbox button:disabled { + color: #313739; +} + +filechooser #pathbarbox button:backdrop { + border-color: #cecec9; + background-image: image(#f5f5f4); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); +} + +filechooser #pathbarbox button:backdrop label, filechooser #pathbarbox button:backdrop { + color: #313739; +} + +filechooser #pathbarbox button:backdrop:disabled { + border-color: #cecec9; + background-image: image(#f9f9f8); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); +} + +filechooser #pathbarbox button:backdrop:disabled label, filechooser #pathbarbox button:backdrop:disabled { + color: #566164; +} + +button.titlebutton { + color:inherit; + border-style: none; + background-position: center; + background-repeat: no-repeat; + background-image: -gtk-scaled(url("assets/window-buttons/titlebutton.png"), url("assets/window-buttons/titlebutton@2.png")); + text-shadow: none; + -gtk-icon-shadow:none; +} + +window.nautilus-desktop-window box.searchbar-container.vertical > searchbar, window.nautilus-desktop-window box.searchbar-container.vertical > searchbar:backdrop { + background-color: transparent; +} + +viewport.frame > list.tweak-categories label:backdrop { + color: #313739; +} + +.primary-toolbar button.raised { + margin: 0px; +} + +scrolledwindow undershoot.top,scrolledwindow undershoot.bottom,scrolledwindow undershoot.left,scrolledwindow undershoot.right { + background-image: none; +} + +#AuxToolbox { + min-height:38px; +} + +notebook notebook header label { + font-weight:normal; +} + +notebook notebook header image { + -gtk-icon-transform:scale(0.75); + margin:-1px 0 -1px -3px; +} + +/* checked buttons: light theme version */ +button.radio:checked, +button.toggle:checked { + background-color: transparent; + background-image: image(linear-gradient(rgba(0,0,0,0.16), rgba(0,0,0,0.04))); +} + +/* checked buttons: dark theme version */ +.dark button.radio:checked, +.dark button.toggle:checked { + background-color: transparent; + background-image: image(@theme_selected_bg_color); +} + +/* scale part without border doesn't match with a spinbutton; add border */ +#InkSpinScale trough { + border: 1px solid alpha(@theme_fg_color, 0.15); +} + +.dark #InkSpinScale trough { + border-color: alpha(black, 0.25); +} + +#LPEEffectItem expander title label { + min-height:21px; +} + +/************* + * Expanders * + *************/ + +expander combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +expander combobox arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +expander combobox arrow:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} |