Regenerated

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