Last active
October 18, 2017 09:15
-
-
Save rhoconlinux/f3d04115adfbd50d8944232d90f76823 to your computer and use it in GitHub Desktop.
fix panel loki
This file contains hidden or 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
/********* | |
* Panel (wingpanel)* | |
********/ | |
.panel { | |
background-color: transparent; | |
transition: all 100ms ease-in-out; | |
} | |
.panel.maximized { | |
background-color: #000; | |
} | |
.panel.translucent { | |
background-color: alpha(#000, 0.5); | |
} | |
.menubar.panel, | |
menubar.panel, | |
.panel menubar, | |
.panel .menubar { | |
box-shadow: none; | |
border: none; | |
} | |
.composited-indicator > revealer label, | |
.composited-indicator > revealer image, | |
.composited-indicator > GtkRevealer { | |
color: #fff; | |
font-weight: bold; | |
text-shadow: | |
0 0 2px alpha (#000, 0.3), | |
0 1px 2px alpha (#000, 0.6); | |
icon-shadow: | |
0 0 2px alpha (#000, 0.3), | |
0 1px 2px alpha (#000, 0.6); | |
transition: all 200ms ease-in-out; | |
} | |
.composited-indicator .keyboard { | |
background-color: #fff; | |
border-radius: 2px; | |
box-shadow: | |
0 0 2px alpha (#000, 0.3), | |
0 1px 2px alpha (#000, 0.6); | |
color: #333; | |
font-weight: 600; | |
padding: 0 3px; | |
text-shadow: none; | |
} | |
.panel.color-light .composited-indicator > revealer label, | |
.panel.color-light .composited-indicator > revealer image, | |
.panel.color-light .composited-indicator > GtkRevealer { | |
color: alpha (#000, 0.65); | |
text-shadow: | |
0 0 2px alpha (#fff, 0.3), | |
0 1px 0 alpha (#fff, 0.25); | |
icon-shadow: | |
0 0 2px alpha (#fff, 0.3), | |
0 1px 0 alpha (#fff, 0.25); | |
} | |
.panel.color-light .composited-indicator .keyboard { | |
background-color: alpha (#000, 0.65); | |
box-shadow: | |
0 0 2px alpha (#fff, 0.3), | |
0 1px 0 alpha (#fff, 0.25); | |
color: #fff; | |
text-shadow: none; | |
} | |
.panel .popover { | |
box-shadow: | |
inset 0 -1px 0 0 alpha (@bg_highlight_color, 0.5), | |
0 3px 4px alpha (#000, 0.15), | |
0 3px 3px -3px alpha (#000, 0.35); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment