Regenerated
This commit is contained in:
+338
-342
File diff suppressed because it is too large
Load Diff
+24
-26
@@ -968,10 +968,9 @@ prompt = >
|
|||||||
** =.config/wofi/style.css=
|
** =.config/wofi/style.css=
|
||||||
These are config files for .config/wofi
|
These are config files for .config/wofi
|
||||||
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
|
||||||
|
|
||||||
@import url("file:///home/henrov/.config/shared/colors.css");
|
@import url("file:///home/henrov/.config/shared/colors.css");
|
||||||
|
|
||||||
/* --- Global --- */
|
/* Global styles */
|
||||||
* {
|
* {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: @text;
|
color: @text;
|
||||||
@@ -979,20 +978,30 @@ These are config files for .config/wofi
|
|||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------ */
|
/* --- DRUN menu (full size) --- */
|
||||||
/* MAIN MENU / DRUN / DMENU */
|
#main {
|
||||||
/* ------------------------ */
|
background:
|
||||||
#main,
|
linear-gradient(@base-alpha, @base-alpha) padding-box, /* Inner fill */
|
||||||
#dmenu {
|
linear-gradient(45deg, @blue, @green) border-box; /* Gradient border */
|
||||||
|
border: 2px solid transparent; /* required for border-box layering */
|
||||||
|
border-radius: 30px;
|
||||||
|
padding: 20px;
|
||||||
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||||
width: 800px;
|
width: 800px;
|
||||||
height: 600px;
|
height: 600px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --- DMENU menu (half height, same style) --- */
|
||||||
|
#dmenu {
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
padding: 20px;
|
padding: 10px; /* smaller padding for half-height */
|
||||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||||
|
width: 800px;
|
||||||
|
height: 300px; /* half the height of #main */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Input field */
|
/* Input field */
|
||||||
@@ -1005,21 +1014,19 @@ These are config files for .config/wofi
|
|||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Entries / list items */
|
/* Entries */
|
||||||
#entry,
|
#entry {
|
||||||
.app-icon {
|
|
||||||
background-color: rgba(200,200,200,0.2);
|
background-color: rgba(200,200,200,0.2);
|
||||||
color: @text;
|
color: @text;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
margin: 2px 0;
|
margin: 2px 0;
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent; /* needed for gradient on selection */
|
||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Focus / hover effect */
|
/* Entry focus (hover or typing) */
|
||||||
#entry:focus,
|
#entry:focus {
|
||||||
.app-icon:focus {
|
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
@@ -1027,9 +1034,8 @@ These are config files for .config/wofi
|
|||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Selection */
|
/* Entry selection */
|
||||||
#entry:selected,
|
#entry:selected {
|
||||||
.app-icon:selected {
|
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
@@ -1048,14 +1054,6 @@ These are config files for .config/wofi
|
|||||||
background-color: @blue;
|
background-color: @blue;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------ */
|
|
||||||
/* grid spacing for drun icons */
|
|
||||||
.drun-view {
|
|
||||||
gap: 10px;
|
|
||||||
justify-content: flex-start;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/modules/traveldroid/apps/zenbrowser.nix=
|
** =generated/modules/traveldroid/apps/zenbrowser.nix=
|
||||||
|
|||||||
Reference in New Issue
Block a user