diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-06-04 02:39:35 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-06-04 02:39:35 -0400 |
commit | 43ea62d444b41e9ffff785ede2620b2e64fbb3b7 (patch) | |
tree | 95ccd96da8a15a4ce6586b8a065277770999087a /css | |
parent | 79c00c68e5845b496f6d3163d6fbc6e1c6de56ae (diff) | |
parent | 28b33d1b220aef5558ef58eb1326510ccccf5361 (diff) | |
download | abaddon-portaudio-43ea62d444b41e9ffff785ede2620b2e64fbb3b7.tar.gz abaddon-portaudio-43ea62d444b41e9ffff785ede2620b2e64fbb3b7.zip |
merge
Diffstat (limited to 'css')
-rw-r--r-- | css/application-low-priority.css | 86 | ||||
-rw-r--r-- | css/main.css | 109 |
2 files changed, 106 insertions, 89 deletions
diff --git a/css/application-low-priority.css b/css/application-low-priority.css new file mode 100644 index 0000000..449127b --- /dev/null +++ b/css/application-low-priority.css @@ -0,0 +1,86 @@ +/* +application wide stuff +has to be separate to allow main.css to override certain things +*/ + +.app-window label:not(:disabled) { + color: @text_color; +} + +.app-window entry { + background: @secondary_color; + color: @text_color; + border: 1px solid #1c2e40; +} + +.app-window button { + background: @secondary_color; + color: @text_color; + text-shadow: none; + box-shadow: none; +} + +.app-window button:checked { + border-top: 0px; + border-left: 0px; + border-right: 0px; + border-bottom: 3px solid #39a2ed; + color: #ffffff; +} + +.app-window button:not(:checked) { + border: 3px #0000ff; +} + +.app-window.background { + background: @background_color; +} + +.app-window treeview { + color: @text_color; + background: @secondary_color; +} + +.app-popup list { + background: @secondary_color; +} + +.app-window paned separator { + background: @background_color; +} + +.app-window scrollbar { + background: @background_color; + border-left: 1px solid transparent; +} + +.app-window menubar, menu { + background: @background_color; + color: #cccccc; +} + +.app-window textview text { + caret-color: #ababab; +} + +.app-window check, +.app-window radio { + background-clip: padding-box; + background: @secondary_color; + border-color: #070707; + box-shadow: 0 1px rgba(0, 0, 0, 0); + color: #dddddd; +} + +.app-window check:checked, +.app-window radio:checked { + background-clip: border-box; + background: #0b4285; + border-color: #092444; + box-shadow: 0 1px rgba(0, 0, 0, 0); + color: #dddddd; +} + +.app-window colorswatch { + box-shadow: 0 1px rgba(0, 0, 0, 0); +} diff --git a/css/main.css b/css/main.css index 49d3e76..ee60cd1 100644 --- a/css/main.css +++ b/css/main.css @@ -57,14 +57,8 @@ padding: 15px; } -.message-container-author { - margin-top: -10px; -} - .message-container-extra { color: #78909c; - margin-left: -5px; - margin-right: -5px; } .message-container-timestamp { @@ -142,6 +136,26 @@ margin: 5px; } +.message-component { + margin: 5px; +} + +.message-component.primary { + background: #5865F2; +} + +.message-component.secondary, .message-component.link { + background: #4F545C; +} + +.message-component.success { + background: #43B581; +} + +.message-component.danger { + background: #F04747; +} + .reaction-box { padding: 2px 5px 2px 5px; margin: 0px 0px 0px 0px; @@ -177,62 +191,6 @@ color: @text_color; } -.app-window label:not(:disabled) { - color: @text_color; -} - -.app-window entry { - background: @secondary_color; - color: @text_color; - border: 1px solid #1c2e40; -} - -.app-window button { - background: @secondary_color; - color: @text_color; - text-shadow: none; - box-shadow: none; -} - -.app-window button:checked { - border-top: 0px; - border-left: 0px; - border-right: 0px; - border-bottom: 3px solid #39a2ed; - color: #ffffff; -} - -.app-window button:not(:checked) { - border: 3px #0000ff; -} - -.app-window.background { - background: @background_color; -} - -.app-window treeview { - color: @text_color; - background: @secondary_color; -} - -.app-popup list { - background: @secondary_color; -} - -.app-window paned separator { - background: @background_color; -} - -.app-window scrollbar { - background: @background_color; - border-left: 1px solid transparent; -} - -.app-window menubar, menu { - background: @background_color; - color: #cccccc; -} - .status-indicator.dnd { color: #982929; } @@ -304,37 +262,10 @@ padding-left: 5px; } -.app-window textview text { - caret-color: #ababab; -} - .guild-members-pane-info { padding: 10px; } - -.app-window check, -.app-window radio { - background-clip: padding-box; - background: @secondary_color; - border-color: #070707; - box-shadow: 0 1px rgba(0, 0, 0, 0); - color: #dddddd; -} - -.app-window check:checked, -.app-window radio:checked { - background-clip: border-box; - background: #0b4285; - border-color: #092444; - box-shadow: 0 1px rgba(0, 0, 0, 0); - color: #dddddd; -} - -.app-window colorswatch { - box-shadow: 0 1px rgba(0, 0, 0, 0); -} - .drag-hover-top { background: linear-gradient(to bottom, rgba(255, 66, 66, 0.65) 0%, rgba(0, 0, 0, 0) 35%); } |