23 lines
497 B
CSS
23 lines
497 B
CSS
/* Used to remove odd effects when full transparency is needed. */
|
|
|
|
.panel-transparency {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
.panel-effect-transparency {
|
|
box-shadow: none;
|
|
border: none;
|
|
/* Gnome Shell specific CSS */
|
|
background-gradient-direction: none;
|
|
background-gradient-start: none;
|
|
background-gradient-end: none;
|
|
}
|
|
|
|
/* Used to remove backgrounds when full transparency is needed. */
|
|
|
|
.panel-background-image-transparency {
|
|
border-image: none;
|
|
background-image: none;
|
|
}
|
|
|