aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/sass')
-rw-r--r--client/src/sass/bootstrap.scss5
-rw-r--r--client/src/sass/include/_mixins.scss4
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