Skip to content

Commit

Permalink
Merge pull request #169 from rohanmohapatra/master
Browse files Browse the repository at this point in the history
[Enhancement] Adds the Flat-Remix theme buttons
  • Loading branch information
jonian authored Apr 27, 2020
2 parents 6f231d4 + c4b6406 commit ee61deb
Show file tree
Hide file tree
Showing 13 changed files with 51 additions and 0 deletions.
Binary file modified [email protected]/schemas/gschemas.compiled
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<value value="17" nick="telinkrin" />
<value value="18" nick="breeze" />
<value value="19" nick="prof-gnome" />
<value value="20" nick="flat-remix" />
</enum>

<enum id="org.gnome.shell.extensions.unite.hideTitlebars">
Expand Down
1 change: 1 addition & 0 deletions [email protected]/settings.ui
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,7 @@
<item id="17" translatable="yes">Telinkrin</item>
<item id="18" translatable="yes">Breeze</item>
<item id="19" translatable="yes">Prof-Gnome</item>
<item id="20" translatable="yes">Flat Remix</item>
</items>
</object>
<packing>
Expand Down
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/close-active.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/close-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/maximize-active.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/maximize-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/maximize.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/minimize-active.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/minimize-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions [email protected]/themes/flat-remix/minimize.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions [email protected]/themes/flat-remix/stylesheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.window-button .icon {
width: 24px;
height: 24px;
}

.close .icon {
background-image: url("close.svg");
}

.close:hover .icon {
background-image: url("close-hover.svg");
}

.close:active .icon {
background-image: url("close-active.svg");
}

.minimize .icon {
background-image: url("minimize.svg");
}

.minimize:hover .icon {
background-image: url("minimize-hover.svg");
}

.minimize:active .icon {
background-image: url("minimize-active.svg");
}

.maximize .icon {
background-image: url("maximize.svg");
}

.maximize:hover .icon {
background-image: url("maximize-hover.svg");
}

.maximize:active .icon {
background-image: url("maximize-active.svg");
}

0 comments on commit ee61deb

Please sign in to comment.