Regenerated
This commit is contained in:
+307
-373
File diff suppressed because it is too large
Load Diff
+11
-77
@@ -2687,6 +2687,7 @@ These are config files for waybar
|
|||||||
|
|
||||||
/*******************************************************************/
|
/*******************************************************************/
|
||||||
"group/myworkspaces": {
|
"group/myworkspaces": {
|
||||||
|
"class": "pill",
|
||||||
"orientation": "horizontal",
|
"orientation": "horizontal",
|
||||||
"drawer": {
|
"drawer": {
|
||||||
"transition-duration": 500,
|
"transition-duration": 500,
|
||||||
@@ -2707,6 +2708,7 @@ These are config files for waybar
|
|||||||
|
|
||||||
/*******************************************************************/
|
/*******************************************************************/
|
||||||
"group/hardware": {
|
"group/hardware": {
|
||||||
|
"class": "pill",
|
||||||
"orientation": "horizontal",
|
"orientation": "horizontal",
|
||||||
"drawer": {
|
"drawer": {
|
||||||
"transition-duration": 500,
|
"transition-duration": 500,
|
||||||
@@ -2731,6 +2733,7 @@ These are config files for waybar
|
|||||||
/*************************/
|
/*************************/
|
||||||
|
|
||||||
"group/connections": {
|
"group/connections": {
|
||||||
|
"class": "pill",
|
||||||
"orientation": "horizontal",
|
"orientation": "horizontal",
|
||||||
"drawer": {
|
"drawer": {
|
||||||
"transition-duration": 500,
|
"transition-duration": 500,
|
||||||
@@ -2904,15 +2907,6 @@ This file contains all css for waybar
|
|||||||
@define-color blue #89b4fa;
|
@define-color blue #89b4fa;
|
||||||
@define-color lavender #b4befe;
|
@define-color lavender #b4befe;
|
||||||
|
|
||||||
/*
|
|
||||||
|
|
||||||
border:
|
|
||||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
|
||||||
padding-box,
|
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* --- Global --- */
|
/* --- Global --- */
|
||||||
* {
|
* {
|
||||||
font-family:
|
font-family:
|
||||||
@@ -2942,92 +2936,32 @@ window#waybar {
|
|||||||
border: transparent;
|
border: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- Groups --- */
|
/* --- Pill --- */
|
||||||
|
/* common pill style */
|
||||||
#hardware {
|
.pill {
|
||||||
padding: 0px 1px;
|
padding: 0px 1px;
|
||||||
min-width: 80px;
|
min-width: 80px;
|
||||||
color: @text;
|
color: @text;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
/* transparent border to preserve spacing */
|
border: 1px solid @teal; /* transparent border to preserve spacing */
|
||||||
border: 1px solid @teal;
|
background: transparent; /* fake border via layered background */
|
||||||
/* fake border via layered background */
|
|
||||||
background: transparent
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* center expanded content */
|
/* center expanded content */
|
||||||
#hardware revealer > box {
|
.pill revealer > box {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* center collapsed (first visible module) */
|
/* center collapsed (first visible module) */
|
||||||
#hardware > widget {
|
.pill > widget {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* spacing between items */
|
/* spacing between items */
|
||||||
#hardware revealer > box > widget {
|
.pill revealer > box > widget {
|
||||||
margin: 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#myworkspaces {
|
|
||||||
padding: 0px 1px;
|
|
||||||
min-width: 80px;
|
|
||||||
color: @text;
|
|
||||||
border-radius: 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
/* transparent border to preserve spacing */
|
|
||||||
border: 1px solid transparent;
|
|
||||||
/* fake border via layered background */
|
|
||||||
background: transparent
|
|
||||||
}
|
|
||||||
|
|
||||||
/* center expanded content */
|
|
||||||
#myworkspaces revealer > box {
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* center collapsed (first visible module) */
|
|
||||||
#myworkspaces > widget {
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* spacing between items */
|
|
||||||
#myworkspaces revealer > box > widget {
|
|
||||||
margin: 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#connections {
|
|
||||||
padding: 0px 1px;
|
|
||||||
min-width: 80px;
|
|
||||||
color: @text;
|
|
||||||
border-radius: 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
/* transparent border to preserve spacing */
|
|
||||||
border: 1px solid transparent;
|
|
||||||
/* fake border via layered background */
|
|
||||||
background: transparent
|
|
||||||
}
|
|
||||||
|
|
||||||
/* center expanded content */
|
|
||||||
#connections revealer > box {
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* center collapsed (first visible module) */
|
|
||||||
#connections > widget {
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* spacing between items */
|
|
||||||
#connections revealer > box > widget {
|
|
||||||
margin: 0 5px;
|
margin: 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
|
|
||||||
/*******************************************************************/
|
/*******************************************************************/
|
||||||
"group/myworkspaces": {
|
"group/myworkspaces": {
|
||||||
|
"class": "pill",
|
||||||
"orientation": "horizontal",
|
"orientation": "horizontal",
|
||||||
"drawer": {
|
"drawer": {
|
||||||
"transition-duration": 500,
|
"transition-duration": 500,
|
||||||
@@ -48,6 +49,7 @@
|
|||||||
|
|
||||||
/*******************************************************************/
|
/*******************************************************************/
|
||||||
"group/hardware": {
|
"group/hardware": {
|
||||||
|
"class": "pill",
|
||||||
"orientation": "horizontal",
|
"orientation": "horizontal",
|
||||||
"drawer": {
|
"drawer": {
|
||||||
"transition-duration": 500,
|
"transition-duration": 500,
|
||||||
@@ -72,6 +74,7 @@
|
|||||||
/*************************/
|
/*************************/
|
||||||
|
|
||||||
"group/connections": {
|
"group/connections": {
|
||||||
|
"class": "pill",
|
||||||
"orientation": "horizontal",
|
"orientation": "horizontal",
|
||||||
"drawer": {
|
"drawer": {
|
||||||
"transition-duration": 500,
|
"transition-duration": 500,
|
||||||
|
|||||||
@@ -35,15 +35,6 @@
|
|||||||
@define-color blue #89b4fa;
|
@define-color blue #89b4fa;
|
||||||
@define-color lavender #b4befe;
|
@define-color lavender #b4befe;
|
||||||
|
|
||||||
/*
|
|
||||||
|
|
||||||
border:
|
|
||||||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
|
||||||
padding-box,
|
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* --- Global --- */
|
/* --- Global --- */
|
||||||
* {
|
* {
|
||||||
font-family:
|
font-family:
|
||||||
@@ -73,92 +64,32 @@ window#waybar {
|
|||||||
border: transparent;
|
border: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- Groups --- */
|
/* --- Pill --- */
|
||||||
|
/* common pill style */
|
||||||
#hardware {
|
.pill {
|
||||||
padding: 0px 1px;
|
padding: 0px 1px;
|
||||||
min-width: 80px;
|
min-width: 80px;
|
||||||
color: @text;
|
color: @text;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
/* transparent border to preserve spacing */
|
border: 1px solid @teal; /* transparent border to preserve spacing */
|
||||||
border: 1px solid @teal;
|
background: transparent; /* fake border via layered background */
|
||||||
/* fake border via layered background */
|
|
||||||
background: transparent
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* center expanded content */
|
/* center expanded content */
|
||||||
#hardware revealer > box {
|
.pill revealer > box {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* center collapsed (first visible module) */
|
/* center collapsed (first visible module) */
|
||||||
#hardware > widget {
|
.pill > widget {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* spacing between items */
|
/* spacing between items */
|
||||||
#hardware revealer > box > widget {
|
.pill revealer > box > widget {
|
||||||
margin: 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#myworkspaces {
|
|
||||||
padding: 0px 1px;
|
|
||||||
min-width: 80px;
|
|
||||||
color: @text;
|
|
||||||
border-radius: 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
/* transparent border to preserve spacing */
|
|
||||||
border: 1px solid transparent;
|
|
||||||
/* fake border via layered background */
|
|
||||||
background: transparent
|
|
||||||
}
|
|
||||||
|
|
||||||
/* center expanded content */
|
|
||||||
#myworkspaces revealer > box {
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* center collapsed (first visible module) */
|
|
||||||
#myworkspaces > widget {
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* spacing between items */
|
|
||||||
#myworkspaces revealer > box > widget {
|
|
||||||
margin: 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#connections {
|
|
||||||
padding: 0px 1px;
|
|
||||||
min-width: 80px;
|
|
||||||
color: @text;
|
|
||||||
border-radius: 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
/* transparent border to preserve spacing */
|
|
||||||
border: 1px solid transparent;
|
|
||||||
/* fake border via layered background */
|
|
||||||
background: transparent
|
|
||||||
}
|
|
||||||
|
|
||||||
/* center expanded content */
|
|
||||||
#connections revealer > box {
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* center collapsed (first visible module) */
|
|
||||||
#connections > widget {
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* spacing between items */
|
|
||||||
#connections revealer > box > widget {
|
|
||||||
margin: 0 5px;
|
margin: 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user