Advertisement
Guest User

waybar workspace module style

a guest
Mar 17th, 2025
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.93 KB | None | 0 0
  1. @import "./colors.css";
  2.  
  3. #workspaces {
  4.   margin: 0rem 0.5rem;
  5.   padding: 0.3rem 0rem 0.3rem 0rem;
  6.   font-size: 0.8rem;
  7. }
  8.  
  9. #workspaces button {
  10.   background: alpha(@primary_fixed, 0.5);
  11.   border-radius: 1.5rem;
  12.   margin: 0.1rem 0.2rem;
  13.   min-width: 1rem;
  14.   color: transparent;
  15.   transition: all 0.3s cubic-bezier(0.77,0.00,0.175,1.00);
  16. }
  17.  
  18. #workspaces button.active {
  19.   min-width: 2rem;
  20.   background: alpha(@primary_fixed, 1);
  21.   transition: all 0.3s cubic-bezier(0.77,0.00,0.175,1.00);
  22. }
  23.  
  24. #workspaces button.empty {
  25.   background: alpha(@on_surface, 0.2);
  26.   transition: all 0.3s cubic-bezier(0.77,0.00,0.175,1.00);
  27. }
  28.  
  29. #workspaces button:hover {
  30.   background: alpha(@primary_fixed, 1);
  31.   min-width: 2rem;
  32.   transition: all 0.3s cubic-bezier(0.77,0.00,0.175,1.00);
  33. }
  34.  
  35. #workspaces button.empty:hover {
  36.   background: alpha(@on_surface, 0.8);
  37.   min-width: 2rem;
  38.   transition: all 0.3s cubic-bezier(0.77,0.00,0.175,1.00);
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement