diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-11-23 10:45:42 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-12-03 10:15:49 +0100 |
commit | d4132d3f56b392a2e4e632db59e6644e4851228e (patch) | |
tree | be903734aa9ce3d669c40656a0f81bd3e9c7978c /client/src/sass | |
parent | 4a54a93941d1c095bf249331df799c51e39c3774 (diff) | |
download | PeerTube-d4132d3f56b392a2e4e632db59e6644e4851228e.tar.gz PeerTube-d4132d3f56b392a2e4e632db59e6644e4851228e.tar.zst PeerTube-d4132d3f56b392a2e4e632db59e6644e4851228e.zip |
more explicit error messages for file uploads
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/bootstrap.scss | 5 | ||||
-rw-r--r-- | client/src/sass/include/_mixins.scss | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index b90bffbfc..208c7f582 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -44,6 +44,11 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
44 | z-index: inherit !important; | 44 | z-index: inherit !important; |
45 | } | 45 | } |
46 | 46 | ||
47 | .btn-group > .btn:not(:first-child) { | ||
48 | border-top-left-radius: 0 !important; | ||
49 | border-bottom-left-radius: 0 !important; | ||
50 | } | ||
51 | |||
47 | .dropdown-menu { | 52 | .dropdown-menu { |
48 | z-index: z(dropdown) + 1 !important; | 53 | z-index: z(dropdown) + 1 !important; |
49 | 54 | ||
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 1a94de5b2..fecae9fbc 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -732,6 +732,10 @@ | |||
732 | &.secondary { | 732 | &.secondary { |
733 | background-color: pvar(--secondaryColor); | 733 | background-color: pvar(--secondaryColor); |
734 | } | 734 | } |
735 | |||
736 | &.red { | ||
737 | background-color: lighten($color: #c54130, $amount: 10); | ||
738 | } | ||
735 | } | 739 | } |
736 | } | 740 | } |
737 | 741 | ||