-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
140 additions
and
0 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,3 @@ | ||
# A collection of example styles | ||
|
||
To use any of these copy them to `~/.config/wf-shell/css/` |
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,9 @@ | ||
.battery:hover image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(1.4); | ||
} | ||
|
||
.battery image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(0.9); | ||
} |
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,3 @@ | ||
.command-output { | ||
padding: 0px 0px 0px 0px; | ||
} |
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,9 @@ | ||
.wf-panel .launcher image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(0.8); | ||
} | ||
|
||
.wf-panel .launcher:hover image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(1.2); | ||
} |
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,7 @@ | ||
.wf-panel .menu-icon { | ||
padding: 0px 0px 0px 0px; | ||
} | ||
|
||
.wf-panel .menu { | ||
border: none; | ||
} |
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,9 @@ | ||
.menu:hover image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(1.4); | ||
} | ||
|
||
.menu image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(0.9); | ||
} |
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,9 @@ | ||
.network:hover image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(1.4); | ||
} | ||
|
||
.network image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(0.9); | ||
} |
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,39 @@ | ||
/* Examples of ways CSS selectors can be used */ | ||
|
||
/* Sections of the panel can be selected */ | ||
.wf-panel .left, | ||
.wf-panel .right, | ||
.wf-panel .center { | ||
background-color: black; | ||
} | ||
|
||
/* Individual plugins can be selected */ | ||
.wf-panel .battery, | ||
.wf-panel .menu, | ||
.wf-panel .clock, | ||
.wf-panel .command-output, | ||
.wf-panel .launchers, | ||
.wf-panel .menu, | ||
.wf-panel .network, | ||
.wf-panel .spacing, | ||
.wf-panel .volume, | ||
.wf-panel .window-list { | ||
font: monospace; | ||
} | ||
|
||
/* Plugin popovers can be selected */ | ||
.menu-popover, | ||
.clock-popover { | ||
font: monospace; | ||
} | ||
|
||
/* animations for hover are possible */ | ||
.wf-panel .launcher image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(0.8); | ||
} | ||
|
||
.wf-panel .launcher:hover image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(1.2); | ||
} |
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,13 @@ | ||
.tray-box:hover image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(1.4); | ||
} | ||
|
||
.tray-box image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(0.9); | ||
} | ||
|
||
.tray-box { | ||
padding: 0px 0px 0px 0px; | ||
} |
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,9 @@ | ||
.volume:hover image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(1.4); | ||
} | ||
|
||
.volume image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(0.9); | ||
} |
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,23 @@ | ||
/* Default size not-selected not-hovered */ | ||
.wf-panel .window-button.flat image { | ||
transition: 500ms linear; | ||
-gtk-icon-transform: scale(1.0); | ||
} | ||
|
||
/* Double size not-selected hovered */ | ||
.wf-panel .window-button.flat:hover image { | ||
transition: 100ms linear; | ||
-gtk-icon-transform: scale(2.0); | ||
} | ||
|
||
/* +50% size selected not-hovered */ | ||
.wf-panel .window-button image { | ||
transition: 100ms linear; | ||
-gtk-icon-transform: scale(1.5); | ||
} | ||
|
||
/* Double size selected hovered */ | ||
.wf-panel .window-button:hover image { | ||
transition: 100ms linear; | ||
-gtk-icon-transform: scale(2.0); | ||
} |
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,3 @@ | ||
* { | ||
font-family: Jetbrains Mono Regular; | ||
} |