Regenerated
This commit is contained in:
+382
-371
File diff suppressed because it is too large
Load Diff
+46
-35
@@ -4502,54 +4502,65 @@ This is the default layout for wofi
|
||||
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
|
||||
@import "~/.config/shared/Colors.css";
|
||||
|
||||
/*
|
||||
@define-color blue #89b4fa;
|
||||
@define-color green #a6e3a1;
|
||||
*/
|
||||
* {
|
||||
background-color: transparent;
|
||||
color: @text;
|
||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
window {
|
||||
margin: 5px;
|
||||
border: 2px solid red;
|
||||
background-color: red;
|
||||
#main {
|
||||
background-color: @base;
|
||||
border: 1px solid @surface0;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
padding: 20px;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
#input {
|
||||
margin: 5px;
|
||||
border: 2px solid blue;
|
||||
background-color: blue;
|
||||
background-color: @surface0;
|
||||
color: @text;
|
||||
border: 1px solid @surface1;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
padding: 5px 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
margin: 5px;
|
||||
border: 2px solid yellow;
|
||||
background-color: yellow;
|
||||
#entry {
|
||||
background-color: rgba(
|
||||
200,
|
||||
200,
|
||||
200,
|
||||
0.2
|
||||
); /* very light grey, very transparent */
|
||||
color: @text;
|
||||
border-radius: 10px;
|
||||
padding: 5px 10px;
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
margin: 5px;
|
||||
border: 2px solid green;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
#scroll {
|
||||
margin: 5px;
|
||||
border: 2px solid orange;
|
||||
background-color: orange;
|
||||
}
|
||||
|
||||
#text {
|
||||
margin: 5px;
|
||||
border: 2px solid cyan;
|
||||
background-color: cyan;
|
||||
#entry:focus {
|
||||
background-color: @surface1;
|
||||
color: @lavender;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
background-color: rgba(0,0,0,0);
|
||||
}
|
||||
#text:selected {
|
||||
background-color: red;
|
||||
background-color: @surface2;
|
||||
color: @text;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
}
|
||||
|
||||
#scrollbar {
|
||||
background-color: @surface0;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
#scrollbar.handle {
|
||||
background-color: @blue;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
}
|
||||
|
||||
#+END_SRC
|
||||
|
||||
|
||||
@@ -1,50 +1,62 @@
|
||||
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
|
||||
@import "~/.config/shared/Colors.css";
|
||||
|
||||
/*
|
||||
@define-color blue #89b4fa;
|
||||
@define-color green #a6e3a1;
|
||||
*/
|
||||
* {
|
||||
background-color: transparent;
|
||||
color: @text;
|
||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
window {
|
||||
margin: 5px;
|
||||
border: 2px solid red;
|
||||
background-color: red;
|
||||
#main {
|
||||
background-color: @base;
|
||||
border: 1px solid @surface0;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
padding: 20px;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
#input {
|
||||
margin: 5px;
|
||||
border: 2px solid blue;
|
||||
background-color: blue;
|
||||
background-color: @surface0;
|
||||
color: @text;
|
||||
border: 1px solid @surface1;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
padding: 5px 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
margin: 5px;
|
||||
border: 2px solid yellow;
|
||||
background-color: yellow;
|
||||
#entry {
|
||||
background-color: rgba(
|
||||
200,
|
||||
200,
|
||||
200,
|
||||
0.2
|
||||
); /* very light grey, very transparent */
|
||||
color: @text;
|
||||
border-radius: 10px;
|
||||
padding: 5px 10px;
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
margin: 5px;
|
||||
border: 2px solid green;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
#scroll {
|
||||
margin: 5px;
|
||||
border: 2px solid orange;
|
||||
background-color: orange;
|
||||
}
|
||||
|
||||
#text {
|
||||
margin: 5px;
|
||||
border: 2px solid cyan;
|
||||
background-color: cyan;
|
||||
#entry:focus {
|
||||
background-color: @surface1;
|
||||
color: @lavender;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
background-color: rgba(0,0,0,0);
|
||||
background-color: @surface2;
|
||||
color: @text;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
}
|
||||
#text:selected {
|
||||
background-color: red;
|
||||
|
||||
#scrollbar {
|
||||
background-color: @surface0;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
#scrollbar.handle {
|
||||
background-color: @blue;
|
||||
border-radius: 10px; /* Rounded corners */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user