PluginProbe ʕ •ᴥ•ʔ
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents / 1.7.1
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents v1.7.1
4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 2.0.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.2.0 2.2.1 2.2.2 2.3.0 2.3.1 2.3.2 2.3.3 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.6.0 2.6.1 2.6.2 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.4.0 3.4.1 3.4.2 3.4.3 3.5.0 3.5.1 3.5.2 3.5.3 3.6.0 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.7.0 3.7.1 3.7.2 3.7.3 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.9.0 3.9.1 3.9.10 3.9.11 3.9.12 3.9.13 3.9.14 3.9.15 3.9.16 3.9.17 3.9.2 3.9.3 3.9.4 3.9.5 3.9.6 3.9.7 3.9.8 3.9.9 4.0.0 4.0.1 4.0.10 4.0.11 4.0.12 4.0.13 4.0.14 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.0.9 4.1.0 4.1.1 4.1.10 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.4.0 4.4.1 4.4.10 4.4.11 4.4.2 4.4.3 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 4.5.0 4.5.1
embedpress / freemius / assets / scss / admin / _modal-common.scss
embedpress / freemius / assets / scss / admin Last commit date
_deactivation-feedback.scss 9 years ago _license-activation.scss 9 years ago _license-key-resend.scss 9 years ago _modal-common.scss 9 years ago account.scss 9 years ago add-ons.scss 9 years ago checkout.scss 9 years ago common.scss 9 years ago connect.scss 9 years ago debug.scss 9 years ago dialog-boxes.scss 9 years ago
_modal-common.scss
155 lines
1 @import "../colors";
2 @import "../mixins";
3
4 .fs-modal {
5 position: fixed;
6 overflow: auto;
7 height: 100%;
8 width: 100%;
9 top: 0;
10 z-index: 100000;
11 display: none;
12 background: rgba(0, 0, 0, 0.6);
13
14 .fs-modal-dialog {
15 background: transparent;
16 position: absolute;
17 left: 50%;
18 margin-left: -298px;
19 padding-bottom: 30px;
20 top: -100%;
21 z-index: 100001;
22 width: 596px;
23
24 @media (max-width: 650px) {
25 margin-left: -50%;
26 box-sizing: border-box;
27 padding-left: 10px;
28 padding-right: 10px;
29 width: 100%;
30
31 .fs-modal-panel > h3 > strong {
32 font-size: 1.3em;
33 }
34 }
35 }
36
37 &.active {
38 display: block;
39
40 &:before {
41 display: block;
42 }
43
44 .fs-modal-dialog {
45 top: 10%;
46 }
47 }
48
49 .fs-modal-body,
50 .fs-modal-footer {
51 border: 0;
52 background: #fefefe;
53 padding: 20px;
54 }
55
56 .fs-modal-header {
57 border-bottom: #eeeeee solid 1px;
58 background: #fbfbfb;
59 padding: 15px 20px;
60 position: relative;
61 margin-bottom: -10px;
62 // z-index: 2;
63
64 h4 {
65 margin: 0;
66 padding: 0;
67 text-transform: uppercase;
68 font-size: 1.2em;
69 font-weight: bold;
70 color: #cacaca;
71 text-shadow: 1px 1px 1px #fff;
72 letter-spacing: 0.6px;
73 -webkit-font-smoothing: antialiased;
74 }
75
76 .fs-close {
77 position: absolute;
78 right: 10px;
79 top: 12px;
80 cursor: pointer;
81 color: #bbb;
82 @include border-radius(20px);
83 padding: 3px;
84 @include transition(all 0.2s ease-in-out);
85
86 &:hover {
87 color: #fff;
88 background: #aaa;
89 }
90 }
91 }
92
93 .fs-modal-body {
94 border-bottom: 0;
95
96 p {
97 font-size: 14px;
98 }
99
100 h2 {
101 font-size: 20px;
102 line-height: 1.5em;
103 }
104
105 > div {
106 margin-top: 10px;
107
108 h2 {
109 font-weight: bold;
110 font-size: 20px;
111 margin-top: 0;
112 }
113 }
114 }
115
116 .fs-modal-footer {
117 border-top: #eeeeee solid 1px;
118 text-align: right;
119
120 > .button {
121 margin: 0 7px;
122
123 &:first-child {
124 margin: 0;
125 }
126 }
127 }
128
129 .fs-modal-panel {
130 > .notice.inline {
131 margin: 0;
132 display: none;
133 }
134
135 &:not(.active) {
136 display: none;
137 }
138 }
139 }
140
141 .rtl
142 {
143 .fs-modal {
144 .fs-modal-header {
145 .fs-close {
146 right: auto;
147 left: 20px;
148 }
149 }
150 }
151 }
152
153 body.has-fs-modal {
154 overflow: hidden;
155 }