PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 1.2.2
JetFormBuilder — Dynamic Blocks Form Builder v1.2.2
3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 3.0.0 3.0.0.1 3.0.0.2 3.0.0.3 3.0.1 3.0.1.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.0.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.3.1 3.3.4 3.3.4.1 3.3.4.2 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.6 3.4.7 3.4.7.1 3.5.0 3.5.1 3.5.1.1 3.5.1.2 3.5.2 3.5.2.1 3.5.3 3.5.4 3.5.5 3.5.6 3.5.6.1 3.5.6.2 3.5.6.3 3.6.0
jetformbuilder / framework / vue-ui / assets / src / scss / common / _popup.scss
jetformbuilder / framework / vue-ui / assets / src / scss / common Last commit date
_component-wrapper.scss 5 years ago _copy.scss 5 years ago _panels.scss 5 years ago _popup.scss 5 years ago _titles.scss 5 years ago _tooltip.scss 5 years ago
_popup.scss
74 lines
1 .cx-vui-popup {
2 position: fixed;
3 z-index: 999;
4 left: 0;
5 right: 0;
6 top: 0;
7 bottom: 0;
8 display: flex;
9 align-items: center;
10 justify-content: center;
11 &__overlay {
12 background: $color__heading;
13 opacity: .5;
14 position: absolute;
15 left: 0;
16 right: 0;
17 top: 0;
18 bottom: 0;
19 z-index: 1;
20 }
21 &__body {
22 background: $color__bg-panel;
23 box-shadow: 0px 2px 6px rgba( 35, 40, 45, 0.07 );
24 border-radius: 6px;
25 font-family: $font_family;
26 position: relative;
27 z-index: 2;
28 padding: 30px 40px 40px;
29 }
30 &__header {
31 padding: 0 0 10px;
32 }
33 &__content {
34 font-size: 13px;
35 line-height: 20px;
36 color: $color__text;
37 p {
38 font-size: 13px;
39 line-height: 20px;
40 color: $color__text;
41 margin: 0;
42 padding: 0 0 20px;
43 }
44 }
45 &__footer {
46 padding: 20px 0 0;
47 display: flex;
48 align-items: center;
49 .cx-vui-button + .cx-vui-button {
50 margin: 0 0 0 10px;
51 .rtl & {
52 margin: 0 10px 0 0;
53 }
54 }
55 }
56 &__close {
57 position: absolute;
58 right: 12px;
59 top: 15px;
60 cursor: pointer;
61 .rtl & {
62 left: 12px;
63 right: auto;
64 }
65 path {
66 fill: $color__border-off-panel;
67 }
68 &:hover {
69 path {
70 fill: $color__text;
71 }
72 }
73 }
74 }