/*! * 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 }