Default workspace-button rounding to 0
Some checks failed
Mirror to GitHub / mirror (push) Failing after 3s
Build and publish package / package (push) Successful in 2m55s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Breadway 2026-06-15 18:51:42 +08:00
parent ae39fb3ce6
commit f9fa83e8a2
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -119,7 +119,7 @@ dependencies = [
[[package]] [[package]]
name = "breadbar" name = "breadbar"
version = "0.1.5" version = "0.1.6"
dependencies = [ dependencies = [
"bread-theme", "bread-theme",
"futures-lite", "futures-lite",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "breadbar" name = "breadbar"
version = "0.1.5" version = "0.1.6"
edition = "2021" edition = "2021"
description = "Minimal status bar and notification daemon for Hyprland on Wayland" description = "Minimal status bar and notification daemon for Hyprland on Wayland"
license = "MIT" license = "MIT"

View file

@ -14,7 +14,7 @@ fn load_css() -> String {
window.breadbar {{ background-color: {bg_rgba}; border-radius: 0; }}\ window.breadbar {{ background-color: {bg_rgba}; border-radius: 0; }}\
label {{ color: {fg}; }}\ label {{ color: {fg}; }}\
.workspace-btn {{ background: transparent; color: {fg}; opacity: 0.45;\ .workspace-btn {{ background: transparent; color: {fg}; opacity: 0.45;\
border-radius: 0 0 8px 8px; border: none; outline: none; box-shadow: none;\ border-radius: 0; border: none; outline: none; box-shadow: none;\
min-width: 24px; padding: 4px 8px; }}\ min-width: 24px; padding: 4px 8px; }}\
.workspace-btn:hover {{ opacity: 0.8; }}\ .workspace-btn:hover {{ opacity: 0.8; }}\
.workspace-btn.active {{ background: {accent}; opacity: 1; }}\ .workspace-btn.active {{ background: {accent}; opacity: 1; }}\