diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-04-09 02:45:09 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-04-09 02:45:09 -0400 |
commit | 44317e2d349acb859821691801692c87433c1b83 (patch) | |
tree | b991824e8e7353cbb5f9f7f0122f634a8171d995 /res | |
parent | 5b806a25894bf183515c64ac8099911da8f4a0c7 (diff) | |
download | abaddon-portaudio-44317e2d349acb859821691801692c87433c1b83.tar.gz abaddon-portaudio-44317e2d349acb859821691801692c87433c1b83.zip |
more tab work
- only one tab for any channel can be open
- rudimentary unread indicators
- add some css
Diffstat (limited to 'res')
-rw-r--r-- | res/css/application-low-priority.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/res/css/application-low-priority.css b/res/css/application-low-priority.css index cf108f4..9df0fa3 100644 --- a/res/css/application-low-priority.css +++ b/res/css/application-low-priority.css @@ -3,6 +3,31 @@ application wide stuff has to be separate to allow main.css to override certain things */ +.app-window tabbar .box { + margin: -7px -1px -7px -1px; + background: #2a2a2a; + border: 1px solid black; +} + +.app-window tabbar tab:hover { + box-shadow: inset 0 -7px lighter(blue); +} + +.app-window tabbar tab:checked { + box-shadow: inset 0 -7px blue; +} + +.app-window tabbar tab { + background: #1A1A1A; + border: 1px solid #808080; +} + +.app-window tabbar tab.needs-attention { + font-weight: bold; + animation: 150ms ease-in; + background-image: radial-gradient(ellipse at bottom, #FF5370, #1A1A1A 30%); +} + .app-window label:not(:disabled) { color: @text_color; } |