mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* fix: remove theme-flag * migration: walker 1.0.0-beta * Fixups * Add elephant and walker * Update for new layout.xml * Clean up some styling * add unicode and todo providers * remove default quick activate keybinds * Update keybinds and remove defaults to prevent conflict * Fix menu option * Fixes * Remove * Update height * Add elephant service * Remove from hyprland * Restart service now * Trim * Update height * Fix keybindings style * Fix install location * Add walker restart * Fix indention * Fix indention * Fix indention * Fix indention * Advance to present * Need to refresh to bring over the new config * style adjustments * Correct the installation of the 1pw policy installer * Skip the prebuilt for a second while we test * Need libyaml to build ruby * No longer needed, gcc-15 compatibility has been added * Let's just stick to the official path * GCC15 compatibility for Ruby has been achieved * No longer necessary The other mise option is set on Ruby on Rails install * Added ZLS - Zig's Language Server when installing Zig (#1718) * style adjustments * styling changes * add only_search_title * css adjustments to fix broken styles * Be tall again * Remove for future variable height menu * Update height / width params * fix: remove theme-flag * Fix spacing..again * Remove service and add launch util * Fix * fix: wrong emojis flag * remove flag, its dmenu only * set min content width to prevent flickering if the item list contains shorter items * Remove unused service * Megakill needed * Remove any old themes too * Remove min-width * Style adjustments * changes for walker/elephant updates * Match current width * Add a little more space between icon and text * fix: bluetooth find bind * remove archlinux provider, fix migration with missing providers * fix: css import * Fix theme path * fix: add new error label to layout * Fix migration --------- Co-authored-by: David Heinemeier Hansson <david@hey.com> Co-authored-by: Ryan Hughes <ryan@heyoodle.com> Co-authored-by: DoKoB0512 <123281216+DoKoB0512@users.noreply.github.com>
123 lines
1.3 KiB
CSS
123 lines
1.3 KiB
CSS
@import "../../../../../../../.config/omarchy/current/theme/walker.css";
|
|
|
|
* {
|
|
all: unset;
|
|
}
|
|
|
|
* {
|
|
font-family: monospace;
|
|
font-size: 18px;
|
|
color: @text;
|
|
}
|
|
|
|
scrollbar {
|
|
opacity: 0;
|
|
}
|
|
|
|
.normal-icons {
|
|
-gtk-icon-size: 16px;
|
|
}
|
|
|
|
.large-icons {
|
|
-gtk-icon-size: 32px;
|
|
}
|
|
|
|
.box-wrapper {
|
|
background: alpha(@base, 0.95);
|
|
padding: 20px;
|
|
border: 2px solid @border;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
.preview-box {
|
|
}
|
|
|
|
.box {
|
|
}
|
|
|
|
.search-container {
|
|
background: @base;
|
|
padding: 10px;
|
|
}
|
|
|
|
.input placeholder {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.input {
|
|
}
|
|
|
|
.input:focus,
|
|
.input:active {
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
.content-container {
|
|
}
|
|
|
|
.placeholder {
|
|
}
|
|
|
|
.scroll {
|
|
}
|
|
|
|
.list {
|
|
}
|
|
|
|
child,
|
|
child > * {
|
|
}
|
|
|
|
child:hover .item-box {
|
|
}
|
|
|
|
child:selected .item-box {
|
|
}
|
|
|
|
child:selected .item-box * {
|
|
color: @selected-text;
|
|
}
|
|
|
|
.item-box {
|
|
padding-left: 14px;
|
|
}
|
|
|
|
.item-text-box {
|
|
all: unset;
|
|
padding: 14px 0;
|
|
}
|
|
|
|
.item-text {
|
|
}
|
|
|
|
.item-subtext {
|
|
font-size: 0px;
|
|
min-height: 0px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.item-image {
|
|
margin-right: 14px;
|
|
-gtk-icon-transform: scale(0.9);
|
|
}
|
|
|
|
.item-box.calc .item-image {
|
|
-gtk-icon-source: url("file:///home/ryan/Downloads/gitlab.svg");
|
|
}
|
|
|
|
.current {
|
|
font-style: italic;
|
|
}
|
|
|
|
.keybind-hints {
|
|
background: @background;
|
|
padding: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.preview {
|
|
background: @background;
|
|
}
|