| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- @gutenberg-modal-overlay: rgba(0, 0, 0, .7);
- @gutenberg-modal-background: #fff;
- @gutenberg-modal-spacing: 20px;
- @gutenberg-close-button-color: rgba(0, 0, 0, .5);
- @gutenberg-close-button-hover-color: rgba(0, 0, 0, .7);
- @gutenberg-close-button-size: 16px;
- @gutenberg-close-button-padding: 5px;
- @gutenberg-close-button-offset: 25px;
- .wpb-gutenberg-modal {
- position: fixed;
- overflow: hidden;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background: @gutenberg-modal-overlay;
- z-index: 10000;
- .wpb-loading-overlay {
- top: @gutenberg-modal-spacing;
- left: @gutenberg-modal-spacing;
- right: @gutenberg-modal-spacing;
- bottom: @gutenberg-modal-spacing;
- background: @gutenberg-modal-background;
- align-items: center;
- z-index: 1;
- }
- }
- .wpb-gutenberg-modal-inner {
- background: @gutenberg-modal-background;
- position: fixed;
- top: @gutenberg-modal-spacing;
- left: @gutenberg-modal-spacing;
- right: @gutenberg-modal-spacing;
- bottom: @gutenberg-modal-spacing;
- }
- .admin-bar .wpb-gutenberg-modal-inner {
- top: @gutenberg-modal-spacing*2;
- }
- .wpb-gutenberg-modal-inner iframe {
- width: 100%;
- height: 100%;
- }
- button.wpb-gutenberg-modal-close-button {
- position: absolute;
- top: @gutenberg-close-button-offset;
- right: @gutenberg-close-button-offset;
- color: @gutenberg-close-button-color;
- background: transparent;
- border: 0;
- box-shadow: none;
- transition: color .2s ease-in-out;
- font-size: @gutenberg-close-button-size;
- padding: @gutenberg-close-button-padding;
- cursor: pointer;
- &:hover,
- &:focus {
- background: transparent;
- border: 0;
- box-shadow: none;
- color: @gutenberg-close-button-hover-color;
- }
- }
- button.vc_gutenberg-modal-update-button {
- position: absolute;
- top: @gutenberg-close-button-offset;
- right: @gutenberg-close-button-offset + @gutenberg-close-button-offset + (@gutenberg-close-button-offset / 2);
- padding-top: 8px;
- padding-bottom: 8px;
- min-height: 10px;
- }
|