mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-24 18:56:32 -05:00
ca25760d48
The vendored version contains ONLY the color rules. This makes it easy to create custom themes on top of the original bootstrap. Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
33 lines
1.2 KiB
SCSS
33 lines
1.2 KiB
SCSS
/*!
|
|
* SPDX-FileCopyrightText: Original code: Copyright (c) 2011-2022 Twitter, Inc. + Copyright (c) 2011-2022 The Bootstrap Authors. Modification: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
// stylelint-disable function-disallowed-list
|
|
|
|
// .modal-open - body class for killing the scroll
|
|
// .modal - container to scroll within
|
|
// .modal-dialog - positioning shell for the actual modal
|
|
// .modal-content - actual modal w/ bg and corners and stuff
|
|
|
|
|
|
// Container that the modal scrolls within
|
|
.modal {
|
|
// scss-docs-start modal-css-vars
|
|
--#{$prefix}modal-color: #{$modal-content-color};
|
|
--#{$prefix}modal-bg: #{$modal-content-bg};
|
|
--#{$prefix}modal-border-color: #{$modal-content-border-color};
|
|
--#{$prefix}modal-box-shadow: #{$modal-content-box-shadow-xs};
|
|
--#{$prefix}modal-header-border-color: #{$modal-header-border-color};
|
|
--#{$prefix}modal-footer-bg: #{$modal-footer-bg};
|
|
--#{$prefix}modal-footer-border-color: #{$modal-footer-border-color};
|
|
// scss-docs-end modal-css-vars
|
|
}
|
|
|
|
// Modal background
|
|
.modal-backdrop {
|
|
// scss-docs-start modal-backdrop-css-vars
|
|
--#{$prefix}backdrop-bg: #{$modal-backdrop-bg};
|
|
// scss-docs-end modal-backdrop-css-vars
|
|
}
|