This repository has been archived by the owner on May 22, 2019. It is now read-only.
forked from numixproject/numix-gtk-theme
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basic MATE Gtk3 support (numixproject#473)
* * Match Metacity theme color * [Gtk3] Add MATE support (cherry picked from commit numixproject/numix-gtk-theme@1315b5f)
- Loading branch information
Showing
5 changed files
with
179 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
@import "panel"; | ||
|
||
/**************** | ||
! MATE styles * | ||
*****************/ | ||
|
||
@include exports("mate-applications") { | ||
.mate-panel-menu-bar { | ||
@extend %panel; | ||
|
||
border: 0; | ||
padding: 0; | ||
text-shadow: none; | ||
} | ||
|
||
MatePanelApplet .label, | ||
PanelMenuBar.menubar > .menuitem { | ||
color: $panel_fg_color; | ||
} | ||
|
||
PanelSeparator, MatePanelAppletFrameDBus { | ||
border-width: 0; | ||
color: transparent; | ||
background-image: -gtk-scaled(url("../assets/pane-handle.png")); | ||
background-color: transparent; | ||
background-repeat: no-repeat; | ||
background-position: left; | ||
} | ||
|
||
MatePanelApplet .button, | ||
MatePanelApplet .button.flat, | ||
MatePanelApplet .button.toggle | ||
MatePanelApplet .button.flat.toggle { | ||
background-image: none; | ||
background-color: transparent; | ||
border-color: transparent; | ||
border-style: solid; | ||
border-radius: 0; | ||
border-width: 1px; | ||
color: $panel_fg_color; | ||
text-shadow: none; | ||
box-shadow: none; | ||
padding: 2px; | ||
} | ||
|
||
MatePanelApplet .button:hover:active, | ||
MatePanelApplet .button:checked, | ||
MatePanelApplet .button:checked:hover, | ||
MatePanelApplet .button.flat:hover:active, | ||
MatePanelApplet .button.flat:checked, | ||
MatePanelApplet .button.flat:checked:hover, | ||
MatePanelApplet .button.toggle:hover:active, | ||
MatePanelApplet .button.toggle:checked, | ||
MatePanelApplet .button.toggle:checked:hover, | ||
MatePanelApplet .button.flat.toggle:hover:active, | ||
MatePanelApplet .button.flat.toggle:checked, | ||
MatePanelApplet .button.flat.toggle:checked:hover { | ||
background-image: none; | ||
background-color: darker($panel_bg_color); | ||
border-color: transparent; | ||
border-radius: 0; | ||
border-width: 1px; | ||
color: lighter($panel_fg_color); | ||
text-shadow: none; | ||
padding: 2px; | ||
} | ||
|
||
MatePanelApplet .button:hover, | ||
MatePanelApplet .button.flat:hover, | ||
MatePanelApplet .button.toggle:hover, | ||
MatePanelApplet .button.flat.toggle:hover { | ||
background-image: none; | ||
background-color: shade($panel_bg_color, 1.3); | ||
border-color: transparent; | ||
border-radius: 0; | ||
border-width: 1px; | ||
color: $selected_fg_color; | ||
text-shadow: none; | ||
padding: 2px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
@import "panel"; | ||
|
||
/**************** | ||
! MATE styles * | ||
*****************/ | ||
|
||
@include exports("mate-applications") { | ||
.mate-panel-menu-bar { | ||
@extend %panel; | ||
|
||
border: 0; | ||
padding: 0; | ||
text-shadow: none; | ||
} | ||
|
||
#PanelApplet label, | ||
.mate-panel-menu-bar menubar > menuitem { | ||
color: $panel_fg_color; | ||
} | ||
|
||
PanelSeparator, MatePanelAppletFrameDBus { | ||
border-width: 0; | ||
color: transparent; | ||
background-image: -gtk-scaled(url("../assets/pane-handle.png")); | ||
background-color: transparent; | ||
background-repeat: no-repeat; | ||
background-position: left; | ||
} | ||
|
||
#PanelApplet button, | ||
#PanelApplet button.flat, | ||
#PanelApplet button.toggle | ||
#PanelApplet button.flat.toggle { | ||
background-image: none; | ||
background-color: transparent; | ||
border-color: transparent; | ||
border-style: solid; | ||
border-radius: 0; | ||
border-width: 1px; | ||
color: $panel_fg_color; | ||
text-shadow: none; | ||
box-shadow: none; | ||
padding: 2px; | ||
} | ||
|
||
#PanelApplet button:hover:active, | ||
#PanelApplet button:checked, | ||
#PanelApplet button:checked:hover, | ||
#PanelApplet button.flat:hover:active, | ||
#PanelApplet button.flat:checked, | ||
#PanelApplet button.flat:checked:hover, | ||
#PanelApplet button.toggle:hover:active, | ||
#PanelApplet button.toggle:checked, | ||
#PanelApplet button.toggle:checked:hover, | ||
#PanelApplet button.flat.toggle:hover:active, | ||
#PanelApplet button.flat.toggle:checked, | ||
#PanelApplet button.flat.toggle:checked:hover { | ||
background-image: none; | ||
background-color: darker($panel_bg_color); | ||
border-color: transparent; | ||
border-radius: 0; | ||
border-width: 1px; | ||
color: lighter($panel_fg_color); | ||
text-shadow: none; | ||
padding: 2px; | ||
} | ||
|
||
#PanelApplet button:hover, | ||
#PanelApplet button.flat:hover, | ||
#PanelApplet button.toggle:hover, | ||
#PanelApplet button.flat.toggle:hover { | ||
background-image: none; | ||
background-color: shade($panel_bg_color, 1.3); | ||
border-color: transparent; | ||
border-radius: 0; | ||
border-width: 1px; | ||
color: $selected_fg_color; | ||
text-shadow: none; | ||
padding: 2px; | ||
} | ||
|
||
.mate-panel-menu-bar menubar > menuitem { | ||
padding: 3px 7px; | ||
} | ||
} |