summaryrefslogtreecommitdiff
path: root/addons/website/static/src/snippets/s_popup/001.scss
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/website/static/src/snippets/s_popup/001.scss
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/website/static/src/snippets/s_popup/001.scss')
-rw-r--r--addons/website/static/src/snippets/s_popup/001.scss72
1 files changed, 72 insertions, 0 deletions
diff --git a/addons/website/static/src/snippets/s_popup/001.scss b/addons/website/static/src/snippets/s_popup/001.scss
new file mode 100644
index 00000000..f8ae94ca
--- /dev/null
+++ b/addons/website/static/src/snippets/s_popup/001.scss
@@ -0,0 +1,72 @@
+.s_popup[data-vcss='001'] {
+ .modal-content {
+ min-height: $font-size-lg * 2;
+ max-height: none;
+ border: 0;
+ border-radius: 0;
+ box-shadow: $modal-content-box-shadow-sm-up;
+ }
+
+ .modal-dialog {
+ height: auto;
+ min-height: 100%;
+ }
+
+ // Close icon
+ .s_popup_close {
+ z-index: $zindex-modal;
+ @include o-position-absolute(0, 0);
+ width: $font-size-lg * 2;
+ height: $font-size-lg * 2;
+ line-height: $font-size-lg * 2;
+ @include o-bg-color(color-yiq(o-color('primary')), o-color('primary'), $with-extras: false);
+ box-shadow: $box-shadow-sm;
+ cursor: pointer;
+ font-size: $font-size-lg;
+ text-align: center;
+ }
+
+ // Size option - Full
+ .s_popup_size_full {
+ padding: 0 !important;
+ max-width: 100%;
+
+ > .modal-content {
+ // Use the backdrop color as background-color
+ background-color: transparent;
+ box-shadow: none;
+ border-radius: 0;
+ }
+ }
+
+ // Position option - Middle
+ .s_popup_middle .modal-dialog {
+ align-items: center;
+ }
+
+ // Position option - Top/Bottom
+ .s_popup_top,
+ .s_popup_bottom {
+ .modal-dialog {
+ margin-right: 0;
+ &:not(.s_popup_size_full) {
+ padding: $spacer !important;
+ }
+ }
+ }
+ .s_popup_top .modal-dialog {
+ align-items: flex-start;
+ }
+ .s_popup_bottom .modal-dialog {
+ align-items: flex-end;
+ }
+
+ // No backdrop
+ .s_popup_no_backdrop {
+ pointer-events: none;
+
+ .modal-content {
+ pointer-events: auto;
+ }
+ }
+}