PluginProbe
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder / 51.1.36
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder v51.1.36
51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 51.1.46 51.1.47 51.1.49 All 37 releases
king-addons / includes / widgets / Popup / style.css

style.css in King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder 51.1.36, at includes/widgets/Popup/style.css

106 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 body,
2 main {
3 overflow-x: hidden;
4 }
5
6 /*noinspection CssOverwrittenProperties*/
7 .king-addons-popup {
8 position: fixed;
9 overflow: auto;
10 transition: all 500ms ease;
11 max-width: 100%;
12 max-height: 100vh;
13 /* Safari fix */
14 max-height: 100svh;
15 }
16
17 /* Hide scrollbar */
18 .king-addons-popup::-webkit-scrollbar {
19 display: none;
20 }
21
22 .king-addons-popup-overlay {
23 position: fixed;
24 top: 0;
25 left: 0;
26 display: none;
27 width: 100%;
28 height: 100%;
29 transition: opacity 500ms ease;
30 opacity: 0;
31 }
32
33 .king-addons-popup-close-button {
34 line-height: 1;
35 position: absolute;
36 z-index: 999;
37 top: 10px;
38 right: 10px;
39 bottom: 0;
40 display: block;
41 width: min-content;
42 height: min-content;
43 padding: 0;
44 cursor: pointer;
45 }
46
47 .king-addons-popup-animation-fade {
48 opacity: 0;
49 }
50
51 .king-addons-popup-animation-fade.king-addons-popup-active {
52 opacity: 1;
53 }
54
55 .king-addons-popup-position-top {
56 top: -100%;
57 left: 50%;
58 transform: translateX(-50%);
59 transition: top 500ms ease, transform 500ms ease;
60 }
61
62 .king-addons-popup-position-right {
63 top: 50%;
64 right: -100%;
65 transform: translateY(-50%);
66 transition: right 500ms ease, transform 500ms ease;
67 }
68
69 .king-addons-popup-position-bottom {
70 bottom: -100%;
71 left: 50%;
72 transform: translateX(-50%);
73 transition: bottom 500ms ease, transform 500ms ease;
74 }
75
76 .king-addons-popup-position-left {
77 top: 50%;
78 left: -100%;
79 transform: translateY(-50%);
80 transition: left 500ms ease, transform 500ms ease;
81 }
82
83 .king-addons-popup-position-top.king-addons-popup-animation-slide.king-addons-popup-active {
84 top: 50%;
85 transform: translate(-50%, -50%);
86 }
87
88 .king-addons-popup-position-right.king-addons-popup-animation-slide.king-addons-popup-active {
89 right: 50%;
90 transform: translate(50%, -50%);
91 }
92
93 .king-addons-popup-position-bottom.king-addons-popup-animation-slide.king-addons-popup-active {
94 bottom: 50%;
95 transform: translate(-50%, 50%);
96 }
97
98 .king-addons-popup-position-left.king-addons-popup-animation-slide.king-addons-popup-active {
99 left: 50%;
100 transform: translate(-50%, -50%);
101 }
102
103 .king-addons-popup-button {
104 display: inline-block;
105 transition: all .3s;
106 }