diff options
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/bootstrap.scss | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index 208c7f582..0bb349a45 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -361,3 +361,25 @@ ngb-tooltip-window { | |||
361 | display: none; | 361 | display: none; |
362 | } | 362 | } |
363 | } | 363 | } |
364 | |||
365 | .callout { | ||
366 | padding: 1.25rem; | ||
367 | border: 1px solid #eee; | ||
368 | border-radius: .25rem; | ||
369 | |||
370 | & > label { | ||
371 | position: relative; | ||
372 | top: -5px; | ||
373 | left: -10px; | ||
374 | color: #6c757d !important; | ||
375 | } | ||
376 | |||
377 | &:not(.callout-light) { | ||
378 | border-left-width: .25rem; | ||
379 | } | ||
380 | |||
381 | &.callout-info { | ||
382 | border-color: pvar(--mainColorLightest); | ||
383 | border-left-color: pvar(--mainColor); | ||
384 | } | ||
385 | } | ||