diff options
author | 2023-05-11 17:46:32 +0200 | |
---|---|---|
committer | 2023-05-11 17:46:32 +0200 | |
commit | 9cc9ffc5a7edd5bcd4e51bd6b32dfdba5082dd24 (patch) | |
tree | 55851a745af76564d9e7cb60aae81eb13e53c69e /web/source/css/_colors.css | |
parent | feat: initial tracing support (#1623) (diff) | |
download | gotosocial-9cc9ffc5a7edd5bcd4e51bd6b32dfdba5082dd24.tar.xz |
[frontend] Profiles with fields & more (#1764)
* redesign status template
* separate index page styling
* redesign profile template
* fix header styling/wrapping
* remove old spoiler js
* fix status cw button wrapping
* fix status info variables
* profile responsiveness, accessibility tweaks
* fix variable use, mobile
* remove duplicate id's
* rss icon, fix indent
* fix toot border-radius
* fix toot spacing
* emojify and html profile fields
* refactor (sensitive) media rendering
* plaintext profile fields
* bundle plyr icon svg
* only pause video when switching photoswipe slides
* yarn upgrade
* profile fields formatting
* replace uglifyify with @browserify updated fork
* fix profile field templating (yet again)
* fix React classes
* testrig: add testing profile field for admin user
* fix sensitive media interactions
* Revert "testrig: add testing profile field for admin user"
This reverts commit 80490c183e6639ce5b57fcfca6772d8f96df8706.
* settings interface wrapping
* fix reported toot styling
* add role to profile sr-only text
* comment fallback rule
* remove currently unused image description lacking indicator
Diffstat (limited to 'web/source/css/_colors.css')
-rw-r--r-- | web/source/css/_colors.css | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/web/source/css/_colors.css b/web/source/css/_colors.css index 01f59a55d..79acf988c 100644 --- a/web/source/css/_colors.css +++ b/web/source/css/_colors.css @@ -69,8 +69,10 @@ $border-accent: $orange2; $link-fg: $fg-accent; -$role-moderator: $orange1; -$role-admin: $blue2; +$role-admin: $orange2; +$role-mod: $blue2; + +$profile-bg: $gray4; $button-bg: $blue2; $button-fg: $gray1; @@ -80,10 +82,11 @@ $button-danger-bg: $error3; $button-danger-fg: $white1; $button-danger-hover-bg: $error2; -$toot-focus-bg: $gray5; -$toot-unfocus-bg: $gray2; +$toot-bg: $gray3; +$toot-info-bg: $gray2; -$toot-info-bg: $gray4; +$toot-focus-bg: $gray5; +$toot-focus-info-bg: $gray4; $no-img-desc-bg: $orange1; $no-img-desc-fg: $gray1; @@ -116,4 +119,13 @@ $error-bg: $error2; $list-entry-bg: $gray2; $list-entry-alternate-bg: $gray3; -$list-entry-hover-bg: $gray4;
\ No newline at end of file +$list-entry-hover-bg: $gray4; + +/* Plyr video player */ +$plyr-color-main: $orange2; +$plyr-video-background: $bg-accent; +$plyr-badge-background: $bg-accent; +$plyr-video-controls-background: $bg-accent; +$plyr-badge-text-color: $fg; +$plyr-badge-border-radius: $br; +$plyr-video-progress-buffered-background: $gray8;
\ No newline at end of file |