diff options
Diffstat (limited to 'client/src/sass/bootstrap.scss')
-rw-r--r-- | client/src/sass/bootstrap.scss | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index 330882fe4..e10b84596 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -9,6 +9,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
9 | animation: spin .7s infinite linear; | 9 | animation: spin .7s infinite linear; |
10 | } | 10 | } |
11 | 11 | ||
12 | .flex-auto { | ||
13 | flex: auto; | ||
14 | } | ||
15 | |||
12 | @keyframes spin { | 16 | @keyframes spin { |
13 | from { | 17 | from { |
14 | transform: scale(1) rotate(0deg); | 18 | transform: scale(1) rotate(0deg); |
@@ -18,6 +22,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
18 | } | 22 | } |
19 | } | 23 | } |
20 | 24 | ||
25 | .dropdown { | ||
26 | z-index: z(dropdown) !important; | ||
27 | } | ||
28 | |||
21 | .dropdown-menu { | 29 | .dropdown-menu { |
22 | border-radius: 3px; | 30 | border-radius: 3px; |
23 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); | 31 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); |
@@ -26,8 +34,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
26 | .dropdown-item { | 34 | .dropdown-item { |
27 | padding: 3px 15px; | 35 | padding: 3px 15px; |
28 | 36 | ||
29 | &:active { | 37 | &.active { |
30 | color: #000 !important; | 38 | color: var(--mainBackgroundColor) !important; |
39 | background-color: var(--mainHoverColor); | ||
40 | opacity: .9; | ||
31 | } | 41 | } |
32 | } | 42 | } |
33 | 43 | ||
@@ -42,16 +52,14 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
42 | } | 52 | } |
43 | 53 | ||
44 | 54 | ||
45 | @media screen and (min-width: 768px) { | 55 | @media screen and (min-width: #{map-get($grid-breakpoints, md)}) { |
46 | .modal:before { | 56 | .modal:before { |
47 | display: inline-block; | ||
48 | vertical-align: middle; | 57 | vertical-align: middle; |
49 | content: " "; | 58 | content: " "; |
50 | height: 100%; | 59 | height: 100%; |
51 | } | 60 | } |
52 | 61 | ||
53 | .modal-dialog { | 62 | .modal-dialog { |
54 | display: inline-block; | ||
55 | text-align: left; | 63 | text-align: left; |
56 | vertical-align: middle; | 64 | vertical-align: middle; |
57 | min-width: 500px; | 65 | min-width: 500px; |
@@ -172,7 +180,11 @@ ngb-tabset.bootstrap { | |||
172 | } | 180 | } |
173 | 181 | ||
174 | ngb-modal-backdrop { | 182 | ngb-modal-backdrop { |
175 | z-index: 10000 !important; | 183 | z-index: z(modal) - 1 !important; |
184 | } | ||
185 | |||
186 | ngb-modal-window { | ||
187 | z-index: z(modal) !important; | ||
176 | } | 188 | } |
177 | 189 | ||
178 | .btn-outline-tertiary { | 190 | .btn-outline-tertiary { |