├── .editorconfig ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── logo.svg ├── screenshot.png ├── settings.png ├── translations ├── cs.po ├── fr.po ├── ko.po ├── nl.po └── pt_BR.po ├── unite.pot └── unite@hardpixel.eu ├── animation.js ├── buttons.js ├── convenience.js ├── extension.js ├── handlers.js ├── layout.js ├── metadata.json ├── panel.js ├── prefs.js ├── schemas ├── gschemas.compiled └── org.gnome.shell.extensions.unite.gschema.xml ├── settings.ui ├── styles ├── gtk3 │ ├── buttons-left │ │ ├── always.css │ │ ├── both.css │ │ ├── maximized.css │ │ └── tiled.css │ └── buttons-right │ │ ├── always.css │ │ ├── both.css │ │ ├── maximized.css │ │ └── tiled.css ├── gtk4 │ ├── buttons-left │ │ ├── always.css │ │ ├── both.css │ │ ├── maximized.css │ │ └── tiled.css │ └── buttons-right │ │ ├── always.css │ │ ├── both.css │ │ ├── maximized.css │ │ └── tiled.css └── shell │ └── spacing.css ├── stylesheet.css ├── theme.js ├── themes ├── adwaita │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── ambiance │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── arc │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── arrongin │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── breeze │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── canta │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── catppuccin │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── default │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── dracula │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── flat-remix │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── materia │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── mcmojave │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── nordic │ ├── close-prelight.svg │ ├── close.svg │ ├── maximize-prelight.svg │ ├── maximize.svg │ ├── min-prelight.svg │ ├── min.svg │ ├── stylesheet.css │ └── unite.theme ├── osx-arc │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── pop │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── prof-gnome │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── qogir │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── radiance │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── sweet │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── telinkrin │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── united │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── vertex │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── vimix │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme ├── whitesur │ ├── dark │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ ├── light │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── maximize-active.svg │ │ ├── maximize-hover.svg │ │ ├── maximize.svg │ │ ├── minimize-active.svg │ │ ├── minimize-hover.svg │ │ ├── minimize.svg │ │ └── stylesheet.css │ └── unite.theme ├── windwood │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ ├── stylesheet.css │ └── unite.theme └── yaru │ ├── dark │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ └── stylesheet.css │ ├── light │ ├── close-active.svg │ ├── close-hover.svg │ ├── close.svg │ ├── maximize-active.svg │ ├── maximize-hover.svg │ ├── maximize.svg │ ├── minimize-active.svg │ ├── minimize-hover.svg │ ├── minimize.svg │ └── stylesheet.css │ └── unite.theme └── window.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [jonian] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: 'bug' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. See error 18 | 19 | **Expected behavior** 20 | A clear and concise description of what you expected to happen. 21 | 22 | **Screenshots** 23 | If applicable, add screenshots to help explain your problem. 24 | 25 | **Environment (please complete the following information):** 26 | - OS: [e.g. Ubuntu 22.04] 27 | - GNOME Shell version [e.g. 42] 28 | - Unite version [e.g. 65] 29 | 30 | **Logs** 31 | Provide system logs related to unite extension using `journalctl -g unite`. 32 | 33 | **Additional context** 34 | Add any other context about the problem here. 35 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: 'feature' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.ui~ 2 | *.ui# 3 | *.mo 4 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardpixel/unite-shell/e26ce4273c4b0cbf6bd14267cb512b703e1e2095/screenshot.png -------------------------------------------------------------------------------- /settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardpixel/unite-shell/e26ce4273c4b0cbf6bd14267cb512b703e1e2095/settings.png -------------------------------------------------------------------------------- /unite@hardpixel.eu/animation.js: -------------------------------------------------------------------------------- 1 | import GObject from 'gi://GObject' 2 | import St from 'gi://St' 3 | import Clutter from 'gi://Clutter' 4 | import * as Animation from 'resource:///org/gnome/shell/ui/animation.js' 5 | 6 | export const Spinner = GObject.registerClass( 7 | class UniteSpinner extends Animation.Spinner { 8 | play() { 9 | if (!this._spinner) { 10 | this._spinner = new St.SpinnerContent() 11 | this.set_content(this._spinner) 12 | } 13 | 14 | this.remove_all_transitions() 15 | this.show() 16 | 17 | this.ease({ 18 | opacity: 255, 19 | delay: 1000, 20 | duration: 300, 21 | mode: Clutter.AnimationMode.LINEAR 22 | }) 23 | } 24 | 25 | stop() { 26 | this.remove_all_transitions() 27 | 28 | this.ease({ 29 | opacity: 0, 30 | duration: 300, 31 | mode: Clutter.AnimationMode.LINEAR, 32 | onComplete: () => { this.hide() } 33 | }) 34 | } 35 | } 36 | ) 37 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/schemas/gschemas.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardpixel/unite-shell/e26ce4273c4b0cbf6bd14267cb512b703e1e2095/unite@hardpixel.eu/schemas/gschemas.compiled -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk3/buttons-left/always.css: -------------------------------------------------------------------------------- 1 | window headerbar:not(.selection-mode), 2 | window .titlebar:not(.selection-mode) { 3 | padding-left: 0; 4 | } 5 | 6 | window headerbar ~ headerbar:not(.selection-mode):not(.windowhandle), 7 | window headerbar ~ .titlebar:not(.selection-mode):not(.windowhandle), 8 | window .titlebar ~ .titlebar:not(.selection-mode):not(.windowhandle), 9 | window .titlebar ~ headerbar:not(.selection-mode):not(.windowhandle) { 10 | padding-left: 6px; 11 | } 12 | 13 | window headerbar > box.left, 14 | window .titlebar > box.left { 15 | margin: 0 0 0 -200px; 16 | opacity: 0; 17 | } 18 | 19 | window .titlebar.default-decoration { 20 | margin: -200px 0 0; 21 | opacity: 0; 22 | } 23 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk3/buttons-left/both.css: -------------------------------------------------------------------------------- 1 | @import "maximized.css"; 2 | @import "tiled.css"; 3 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk3/buttons-left/maximized.css: -------------------------------------------------------------------------------- 1 | .maximized headerbar:not(.selection-mode), 2 | .maximized .titlebar:not(.selection-mode) { 3 | padding-left: 0; 4 | } 5 | 6 | .maximized headerbar ~ headerbar:not(.selection-mode):not(.windowhandle), 7 | .maximized headerbar ~ .titlebar:not(.selection-mode):not(.windowhandle), 8 | .maximized .titlebar ~ .titlebar:not(.selection-mode):not(.windowhandle), 9 | .maximized .titlebar ~ headerbar:not(.selection-mode):not(.windowhandle) { 10 | padding-left: 6px; 11 | } 12 | 13 | .maximized headerbar > box.left, 14 | .maximized .titlebar > box.left { 15 | margin: 0 0 0 -200px; 16 | opacity: 0; 17 | } 18 | 19 | .maximized .titlebar.default-decoration { 20 | margin: -200px 0 0; 21 | opacity: 0; 22 | } 23 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk3/buttons-left/tiled.css: -------------------------------------------------------------------------------- 1 | .tiled headerbar:not(.selection-mode), 2 | .tiled .titlebar:not(.selection-mode) { 3 | padding-left: 0; 4 | } 5 | 6 | .tiled headerbar ~ headerbar:not(.selection-mode):not(.windowhandle), 7 | .tiled headerbar ~ .titlebar:not(.selection-mode):not(.windowhandle), 8 | .tiled .titlebar ~ .titlebar:not(.selection-mode):not(.windowhandle), 9 | .tiled .titlebar ~ headerbar:not(.selection-mode):not(.windowhandle) { 10 | padding-left: 6px; 11 | } 12 | 13 | .tiled headerbar > box.left, 14 | .tiled .titlebar > box.left { 15 | margin: 0 0 0 -200px; 16 | opacity: 0; 17 | } 18 | 19 | .tiled .titlebar.default-decoration { 20 | margin: -200px 0 0; 21 | opacity: 0; 22 | } 23 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk3/buttons-right/always.css: -------------------------------------------------------------------------------- 1 | window > headerbar:not(.selection-mode), 2 | window > .titlebar:not(.selection-mode), 3 | window > headerbar > headerbar:not(.selection-mode), 4 | window > .titlebar > .titlebar:not(.selection-mode), 5 | window > .titlebar > stack > headerbar:not(.selection-mode), 6 | window headerbar:last-child:not(.selection-mode), 7 | window .titlebar:last-child:not(.selection-mode), 8 | window .windowhandle:not(.selection-mode) { 9 | padding-right: 0; 10 | } 11 | 12 | window headerbar > box.right, 13 | window .titlebar > box.right { 14 | margin: 0 -200px 0 0; 15 | opacity: 0; 16 | } 17 | 18 | window .titlebar.default-decoration { 19 | margin: -200px 0 0; 20 | opacity: 0; 21 | } 22 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk3/buttons-right/both.css: -------------------------------------------------------------------------------- 1 | @import "maximized.css"; 2 | @import "tiled.css"; 3 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk3/buttons-right/maximized.css: -------------------------------------------------------------------------------- 1 | .maximized > headerbar:not(.selection-mode), 2 | .maximized > .titlebar:not(.selection-mode), 3 | .maximized > headerbar > headerbar:not(.selection-mode), 4 | .maximized > .titlebar > .titlebar:not(.selection-mode), 5 | .maximized > .titlebar > stack > headerbar:not(.selection-mode), 6 | .maximized headerbar:last-child:not(.selection-mode), 7 | .maximized .titlebar:last-child:not(.selection-mode), 8 | .maximized .windowhandle:not(.selection-mode) { 9 | padding-right: 0; 10 | } 11 | 12 | .maximized headerbar > box.right, 13 | .maximized .titlebar > box.right { 14 | margin: 0 -200px 0 0; 15 | opacity: 0; 16 | } 17 | 18 | .maximized .titlebar.default-decoration { 19 | margin: -200px 0 0; 20 | opacity: 0; 21 | } 22 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk3/buttons-right/tiled.css: -------------------------------------------------------------------------------- 1 | .tiled > headerbar:not(.selection-mode), 2 | .tiled > .titlebar:not(.selection-mode), 3 | .tiled > headerbar > headerbar:not(.selection-mode), 4 | .tiled > .titlebar > .titlebar:not(.selection-mode), 5 | .tiled > .titlebar > stack > headerbar:not(.selection-mode), 6 | .tiled headerbar:last-child:not(.selection-mode), 7 | .tiled .titlebar:last-child:not(.selection-mode), 8 | .tiled .windowhandle:not(.selection-mode) { 9 | padding-right: 0; 10 | } 11 | 12 | .tiled headerbar > box.right, 13 | .tiled .titlebar > box.right { 14 | margin: 0 -200px 0 0; 15 | opacity: 0; 16 | } 17 | 18 | .tiled .titlebar.default-decoration { 19 | margin: -200px 0 0; 20 | opacity: 0; 21 | } 22 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk4/buttons-left/always.css: -------------------------------------------------------------------------------- 1 | window headerbar windowhandle { 2 | margin-left: -6px; 3 | } 4 | 5 | window headerbar windowcontrols.start { 6 | margin: 0 0 0 -200px; 7 | opacity: 0; 8 | } 9 | 10 | window .titlebar.default-decoration { 11 | margin: -200px 0 0; 12 | opacity: 0; 13 | } 14 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk4/buttons-left/both.css: -------------------------------------------------------------------------------- 1 | @import "maximized.css"; 2 | @import "tiled.css"; 3 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk4/buttons-left/maximized.css: -------------------------------------------------------------------------------- 1 | .maximized headerbar windowhandle { 2 | margin-left: -6px; 3 | } 4 | 5 | .maximized headerbar windowcontrols.start { 6 | margin: 0 0 0 -200px; 7 | opacity: 0; 8 | } 9 | 10 | .maximized .titlebar.default-decoration { 11 | margin: -200px 0 0; 12 | opacity: 0; 13 | } 14 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk4/buttons-left/tiled.css: -------------------------------------------------------------------------------- 1 | .tiled headerbar windowhandle { 2 | margin-left: -6px; 3 | } 4 | 5 | .tiled headerbar windowcontrols.start { 6 | margin: 0 0 0 -200px; 7 | opacity: 0; 8 | } 9 | 10 | .tiled .titlebar.default-decoration { 11 | margin: -200px 0 0; 12 | opacity: 0; 13 | } 14 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk4/buttons-right/always.css: -------------------------------------------------------------------------------- 1 | window headerbar windowhandle { 2 | margin-right: -6px; 3 | } 4 | 5 | window headerbar windowcontrols.end { 6 | margin: 0 -200px 0 0; 7 | opacity: 0; 8 | } 9 | 10 | window .titlebar.default-decoration { 11 | margin: -200px 0 0; 12 | opacity: 0; 13 | } 14 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk4/buttons-right/both.css: -------------------------------------------------------------------------------- 1 | @import "maximized.css"; 2 | @import "tiled.css"; 3 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk4/buttons-right/maximized.css: -------------------------------------------------------------------------------- 1 | .maximized headerbar windowhandle { 2 | margin-right: -6px; 3 | } 4 | 5 | .maximized headerbar windowcontrols.end { 6 | margin: 0 -200px 0 0; 7 | opacity: 0; 8 | } 9 | 10 | .maximized .titlebar.default-decoration { 11 | margin: -200px 0 0; 12 | opacity: 0; 13 | } 14 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/styles/gtk4/buttons-right/tiled.css: -------------------------------------------------------------------------------- 1 | .tiled headerbar windowhandle { 2 | margin-right: -6px; 3 | } 4 | 5 | .tiled headerbar windowcontrols.end { 6 | margin: 0 -200px 0 0; 7 | opacity: 0; 8 | } 9 | 10 | .tiled .titlebar.default-decoration { 11 | margin: -200px 0 0; 12 | opacity: 0; 13 | } 14 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/stylesheet.css: -------------------------------------------------------------------------------- 1 | #panel .panel-button.window-controls { 2 | -natural-hpadding: 0px; 3 | -minimum-hpadding: 0px; 4 | } 5 | 6 | #panel .window-controls-box { 7 | spacing: 2px; 8 | } 9 | 10 | #panel .window-controls-box .window-button { 11 | width: 22px; 12 | } 13 | 14 | #panelLeft .window-controls-container:first-child .window-button:first-child { 15 | padding-left: 3px; 16 | } 17 | 18 | #panelRight .window-controls-container:last-child .window-button:last-child { 19 | padding-right: 3px; 20 | } 21 | 22 | #panel .window-controls-box .icon { 23 | background-color: transparent; 24 | border-radius: 0; 25 | box-shadow: none; 26 | border: 0; 27 | } 28 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/adwaita/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Adwaita 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/ambiance/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 19px; 3 | height: 19px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/ambiance/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Ambiance 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arc/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Arc 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/close-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/close-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/maximize-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/minimize-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/arrongin/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Arrongin 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/breeze/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Breeze 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/canta/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/canta/maximize-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/canta/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/canta/maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/canta/minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/canta/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/canta/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Canta 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/catppuccin/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/catppuccin/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/catppuccin/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Catppuccin 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/default/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Default 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 15px; 3 | height: 15px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/dracula/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Dracula 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/close-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/close-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/maximize-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/minimize-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/flat-remix/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Flat Remix 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/materia/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Materia 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/mcmojave/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/mcmojave/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=McMojave 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/nordic/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/nordic/maximize-prelight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/nordic/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/nordic/min-prelight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/nordic/min.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/nordic/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-prelight.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-prelight.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("min.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("min-prelight.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("min-prelight.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-prelight.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-prelight.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/nordic/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Nordic 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/osx-arc/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=OSX Arc 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/pop/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Pop 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 14px; 3 | height: 14px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 14px; 3 | height: 14px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/prof-gnome/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Prof-Gnome 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/qogir/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Qogir 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/radiance/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 19px; 3 | height: 19px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/radiance/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Radiance 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 15px; 3 | height: 15px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/sweet/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Sweet 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/close-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/close-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/maximize-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/minimize-active.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/telinkrin/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Telinkrin 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 18px; 3 | height: 18px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 18px; 3 | height: 18px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/united/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=United 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vertex/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vertex/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vertex/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vertex/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vertex/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Vertex 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/vimix/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Vimix 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 16px; 3 | height: 16px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/whitesur/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=WhiteSur 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/windwood/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/windwood/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/windwood/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/windwood/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/windwood/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/windwood/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/windwood/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 19px; 3 | height: 19px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .minimize .icon { 15 | background-image: url("minimize.svg"); 16 | } 17 | 18 | .minimize:hover .icon { 19 | background-image: url("minimize-hover.svg"); 20 | } 21 | 22 | .maximize .icon { 23 | background-image: url("maximize.svg"); 24 | } 25 | 26 | .maximize:hover .icon { 27 | background-image: url("maximize-hover.svg"); 28 | } 29 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/windwood/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Windwood 3 | 4 | [Dark] 5 | Style=stylesheet.css 6 | 7 | [Light] 8 | Style=stylesheet.css 9 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/dark/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/light/stylesheet.css: -------------------------------------------------------------------------------- 1 | .window-button .icon { 2 | width: 24px; 3 | height: 24px; 4 | } 5 | 6 | .close .icon { 7 | background-image: url("close.svg"); 8 | } 9 | 10 | .close:hover .icon { 11 | background-image: url("close-hover.svg"); 12 | } 13 | 14 | .close:active .icon { 15 | background-image: url("close-active.svg"); 16 | } 17 | 18 | .minimize .icon { 19 | background-image: url("minimize.svg"); 20 | } 21 | 22 | .minimize:hover .icon { 23 | background-image: url("minimize-hover.svg"); 24 | } 25 | 26 | .minimize:active .icon { 27 | background-image: url("minimize-active.svg"); 28 | } 29 | 30 | .maximize .icon { 31 | background-image: url("maximize.svg"); 32 | } 33 | 34 | .maximize:hover .icon { 35 | background-image: url("maximize-hover.svg"); 36 | } 37 | 38 | .maximize:active .icon { 39 | background-image: url("maximize-active.svg"); 40 | } 41 | -------------------------------------------------------------------------------- /unite@hardpixel.eu/themes/yaru/unite.theme: -------------------------------------------------------------------------------- 1 | [Theme] 2 | Name=Yaru 3 | 4 | [Dark] 5 | Style=dark/stylesheet.css 6 | 7 | [Light] 8 | Style=light/stylesheet.css 9 | --------------------------------------------------------------------------------