@ardimedia/angular-portal-azure 0.2.91 → 0.2.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/apn.js
CHANGED
|
@@ -1026,7 +1026,6 @@ var angularportalazure;
|
|
|
1026
1026
|
};
|
|
1027
1027
|
angular.module('angularportalazure').component('angularPortalBlade', angularPortalBlade);
|
|
1028
1028
|
})(angularportalazure || (angularportalazure = {}));
|
|
1029
|
-
// http://blogs.msdn.com/b/laurieatkinson/archive/2014/08/23/implementing-a-save-warning-in-an-angular-spa.aspx
|
|
1030
1029
|
var angularportalazure;
|
|
1031
1030
|
(function (angularportalazure) {
|
|
1032
1031
|
//grid.$inject = ['angularportalazure.portalService'];
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ardimedia/angular-portal-azure",
|
|
3
3
|
"description": "Angular Portal Azure - GUI Framework.",
|
|
4
4
|
"author": "Ardimedia Anstalt <info@ardimedia.com> (http://www.ardimedia.com)",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.92",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|
|
@@ -1,363 +0,0 @@
|
|
|
1
|
-
/*#region LAYOUT*/
|
|
2
|
-
@-webkit-keyframes ngdialog-fadeout {
|
|
3
|
-
0% {
|
|
4
|
-
opacity: 1; }
|
|
5
|
-
100% {
|
|
6
|
-
opacity: 0; } }
|
|
7
|
-
|
|
8
|
-
@keyframes ngdialog-fadeout {
|
|
9
|
-
0% {
|
|
10
|
-
opacity: 1; }
|
|
11
|
-
100% {
|
|
12
|
-
opacity: 0; } }
|
|
13
|
-
|
|
14
|
-
@-webkit-keyframes ngdialog-fadein {
|
|
15
|
-
0% {
|
|
16
|
-
opacity: 0; }
|
|
17
|
-
100% {
|
|
18
|
-
opacity: 1; } }
|
|
19
|
-
|
|
20
|
-
@keyframes ngdialog-fadein {
|
|
21
|
-
0% {
|
|
22
|
-
opacity: 0; }
|
|
23
|
-
100% {
|
|
24
|
-
opacity: 1; } }
|
|
25
|
-
|
|
26
|
-
.ngdialog,
|
|
27
|
-
.ngdialog *,
|
|
28
|
-
.ngdialog *:before,
|
|
29
|
-
.ngdialog *:after {
|
|
30
|
-
-webkit-box-sizing: border-box;
|
|
31
|
-
-moz-box-sizing: border-box;
|
|
32
|
-
box-sizing: border-box; }
|
|
33
|
-
|
|
34
|
-
.ngdialog {
|
|
35
|
-
position: fixed;
|
|
36
|
-
overflow: auto;
|
|
37
|
-
-webkit-overflow-scrolling: touch;
|
|
38
|
-
z-index: 10000;
|
|
39
|
-
top: 0;
|
|
40
|
-
right: 0;
|
|
41
|
-
bottom: 0;
|
|
42
|
-
left: 0; }
|
|
43
|
-
|
|
44
|
-
.ngdialog-overlay {
|
|
45
|
-
position: fixed;
|
|
46
|
-
background: rgba(0, 0, 0, 0.4);
|
|
47
|
-
top: 0;
|
|
48
|
-
right: 0;
|
|
49
|
-
bottom: 0;
|
|
50
|
-
left: 0;
|
|
51
|
-
-webkit-backface-visibility: hidden;
|
|
52
|
-
-webkit-animation: ngdialog-fadein 0.5s;
|
|
53
|
-
animation: ngdialog-fadein 0.5s; }
|
|
54
|
-
|
|
55
|
-
.ngdialog.ngdialog-closing .ngdialog-overlay {
|
|
56
|
-
-webkit-backface-visibility: hidden;
|
|
57
|
-
-webkit-animation: ngdialog-fadeout 0.5s;
|
|
58
|
-
animation: ngdialog-fadeout 0.5s; }
|
|
59
|
-
|
|
60
|
-
.ngdialog-content {
|
|
61
|
-
background: white;
|
|
62
|
-
-webkit-backface-visibility: hidden;
|
|
63
|
-
-webkit-animation: ngdialog-fadein 0.5s;
|
|
64
|
-
animation: ngdialog-fadein 0.5s; }
|
|
65
|
-
|
|
66
|
-
.ngdialog.ngdialog-closing .ngdialog-content {
|
|
67
|
-
-webkit-backface-visibility: hidden;
|
|
68
|
-
-webkit-animation: ngdialog-fadeout 0.5s;
|
|
69
|
-
animation: ngdialog-fadeout 0.5s; }
|
|
70
|
-
|
|
71
|
-
.ngdialog-close:before {
|
|
72
|
-
font-family: 'Helvetica', Arial, sans-serif;
|
|
73
|
-
content: '\00D7';
|
|
74
|
-
cursor: pointer; }
|
|
75
|
-
|
|
76
|
-
body.ngdialog-open {
|
|
77
|
-
overflow: hidden; }
|
|
78
|
-
|
|
79
|
-
/*#endregion*/
|
|
80
|
-
/*#region LAYOUT DEFAULT*/
|
|
81
|
-
@-webkit-keyframes ngdialog-flyin {
|
|
82
|
-
0% {
|
|
83
|
-
opacity: 0;
|
|
84
|
-
-webkit-transform: translateY(-40px);
|
|
85
|
-
transform: translateY(-40px); }
|
|
86
|
-
100% {
|
|
87
|
-
opacity: 1;
|
|
88
|
-
-webkit-transform: translateY(0);
|
|
89
|
-
transform: translateY(0); } }
|
|
90
|
-
|
|
91
|
-
@keyframes ngdialog-flyin {
|
|
92
|
-
0% {
|
|
93
|
-
opacity: 0;
|
|
94
|
-
-webkit-transform: translateY(-40px);
|
|
95
|
-
-ms-transform: translateY(-40px);
|
|
96
|
-
transform: translateY(-40px); }
|
|
97
|
-
100% {
|
|
98
|
-
opacity: 1;
|
|
99
|
-
-webkit-transform: translateY(0);
|
|
100
|
-
-ms-transform: translateY(0);
|
|
101
|
-
transform: translateY(0); } }
|
|
102
|
-
|
|
103
|
-
@-webkit-keyframes ngdialog-flyout {
|
|
104
|
-
0% {
|
|
105
|
-
opacity: 1;
|
|
106
|
-
-webkit-transform: translateY(0);
|
|
107
|
-
transform: translateY(0); }
|
|
108
|
-
100% {
|
|
109
|
-
opacity: 0;
|
|
110
|
-
-webkit-transform: translateY(-40px);
|
|
111
|
-
transform: translateY(-40px); } }
|
|
112
|
-
|
|
113
|
-
@keyframes ngdialog-flyout {
|
|
114
|
-
0% {
|
|
115
|
-
opacity: 1;
|
|
116
|
-
-webkit-transform: translateY(0);
|
|
117
|
-
-ms-transform: translateY(0);
|
|
118
|
-
transform: translateY(0); }
|
|
119
|
-
100% {
|
|
120
|
-
opacity: 0;
|
|
121
|
-
-webkit-transform: translateY(-40px);
|
|
122
|
-
-ms-transform: translateY(-40px);
|
|
123
|
-
transform: translateY(-40px); } }
|
|
124
|
-
|
|
125
|
-
.ngdialog.ngdialog-theme-default {
|
|
126
|
-
padding-bottom: 160px;
|
|
127
|
-
padding-top: 160px; }
|
|
128
|
-
|
|
129
|
-
.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
|
|
130
|
-
-webkit-animation: ngdialog-flyout .5s;
|
|
131
|
-
animation: ngdialog-flyout .5s; }
|
|
132
|
-
|
|
133
|
-
.ngdialog.ngdialog-theme-default .ngdialog-content {
|
|
134
|
-
-webkit-animation: ngdialog-flyin .5s;
|
|
135
|
-
animation: ngdialog-flyin .5s;
|
|
136
|
-
background: #f0f0f0;
|
|
137
|
-
border-radius: 5px;
|
|
138
|
-
color: #444;
|
|
139
|
-
font-family: 'Helvetica',sans-serif;
|
|
140
|
-
font-size: 1.1em;
|
|
141
|
-
line-height: 1.5em;
|
|
142
|
-
margin: 0 auto;
|
|
143
|
-
max-width: 100%;
|
|
144
|
-
padding: 1em;
|
|
145
|
-
position: relative;
|
|
146
|
-
width: 450px; }
|
|
147
|
-
|
|
148
|
-
.ngdialog.ngdialog-theme-default .ngdialog-close {
|
|
149
|
-
border-radius: 5px;
|
|
150
|
-
cursor: pointer;
|
|
151
|
-
position: absolute;
|
|
152
|
-
right: 0;
|
|
153
|
-
top: 0; }
|
|
154
|
-
|
|
155
|
-
.ngdialog.ngdialog-theme-default .ngdialog-close:before {
|
|
156
|
-
background: transparent;
|
|
157
|
-
border-radius: 3px;
|
|
158
|
-
color: #bbb;
|
|
159
|
-
content: '\00D7';
|
|
160
|
-
font-size: 26px;
|
|
161
|
-
font-weight: 400;
|
|
162
|
-
height: 30px;
|
|
163
|
-
line-height: 26px;
|
|
164
|
-
position: absolute;
|
|
165
|
-
right: 3px;
|
|
166
|
-
text-align: center;
|
|
167
|
-
top: 3px;
|
|
168
|
-
width: 30px; }
|
|
169
|
-
|
|
170
|
-
.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,
|
|
171
|
-
.ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
|
|
172
|
-
color: #777; }
|
|
173
|
-
|
|
174
|
-
.ngdialog.ngdialog-theme-default .ngdialog-message {
|
|
175
|
-
margin-bottom: .5em; }
|
|
176
|
-
|
|
177
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input {
|
|
178
|
-
margin-bottom: 1em; }
|
|
179
|
-
|
|
180
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input textarea,
|
|
181
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],
|
|
182
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],
|
|
183
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],
|
|
184
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"] {
|
|
185
|
-
background: #fff;
|
|
186
|
-
border: 0;
|
|
187
|
-
border-radius: 3px;
|
|
188
|
-
font-family: inherit;
|
|
189
|
-
font-size: inherit;
|
|
190
|
-
font-weight: inherit;
|
|
191
|
-
margin: 0 0 .25em;
|
|
192
|
-
min-height: 2.5em;
|
|
193
|
-
padding: .25em .67em;
|
|
194
|
-
width: 100%; }
|
|
195
|
-
|
|
196
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,
|
|
197
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,
|
|
198
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,
|
|
199
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,
|
|
200
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus {
|
|
201
|
-
-webkit-box-shadow: inset 0 0 0 2px #8dbdf1;
|
|
202
|
-
box-shadow: inset 0 0 0 2px #8dbdf1;
|
|
203
|
-
outline: none; }
|
|
204
|
-
|
|
205
|
-
.ngdialog.ngdialog-theme-default .ngdialog-buttons {
|
|
206
|
-
*zoom: 1; }
|
|
207
|
-
|
|
208
|
-
.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
|
|
209
|
-
content: '';
|
|
210
|
-
display: table;
|
|
211
|
-
clear: both; }
|
|
212
|
-
|
|
213
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button {
|
|
214
|
-
border: 0;
|
|
215
|
-
border-radius: 3px;
|
|
216
|
-
cursor: pointer;
|
|
217
|
-
float: right;
|
|
218
|
-
font-family: inherit;
|
|
219
|
-
font-size: .8em;
|
|
220
|
-
letter-spacing: .1em;
|
|
221
|
-
line-height: 1em;
|
|
222
|
-
margin: 0 0 0 .5em;
|
|
223
|
-
padding: .75em 2em;
|
|
224
|
-
text-transform: uppercase; }
|
|
225
|
-
|
|
226
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
|
|
227
|
-
-webkit-animation: ngdialog-pulse 1.1s infinite;
|
|
228
|
-
animation: ngdialog-pulse 1.1s infinite;
|
|
229
|
-
outline: none; }
|
|
230
|
-
|
|
231
|
-
@media (max-width: 568px) {
|
|
232
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
|
|
233
|
-
-webkit-animation: none;
|
|
234
|
-
animation: none; } }
|
|
235
|
-
|
|
236
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
|
|
237
|
-
background: #3288e6;
|
|
238
|
-
color: #fff; }
|
|
239
|
-
|
|
240
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
|
|
241
|
-
background: #e0e0e0;
|
|
242
|
-
color: #777; }
|
|
243
|
-
|
|
244
|
-
/*#endregion*/
|
|
245
|
-
/*#region LAYOUT PLAIN*/
|
|
246
|
-
.ngdialog.ngdialog-theme-plain {
|
|
247
|
-
padding-bottom: 160px;
|
|
248
|
-
padding-top: 160px; }
|
|
249
|
-
|
|
250
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content {
|
|
251
|
-
background: #fff;
|
|
252
|
-
color: #444;
|
|
253
|
-
font-family: 'Helvetica Neue',sans-serif;
|
|
254
|
-
font-size: 1.1em;
|
|
255
|
-
line-height: 1.5em;
|
|
256
|
-
margin: 0 auto;
|
|
257
|
-
max-width: 100%;
|
|
258
|
-
padding: 1em;
|
|
259
|
-
position: relative;
|
|
260
|
-
width: 450px; }
|
|
261
|
-
|
|
262
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h1,
|
|
263
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h2,
|
|
264
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h3,
|
|
265
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h4,
|
|
266
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h5,
|
|
267
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h6,
|
|
268
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content p,
|
|
269
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content ul,
|
|
270
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content li {
|
|
271
|
-
color: inherit; }
|
|
272
|
-
|
|
273
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-close {
|
|
274
|
-
cursor: pointer;
|
|
275
|
-
position: absolute;
|
|
276
|
-
right: 0;
|
|
277
|
-
top: 0; }
|
|
278
|
-
|
|
279
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-close:before {
|
|
280
|
-
background: transparent;
|
|
281
|
-
color: #bbb;
|
|
282
|
-
content: "\00D7";
|
|
283
|
-
font-size: 26px;
|
|
284
|
-
font-weight: 400;
|
|
285
|
-
height: 30px;
|
|
286
|
-
line-height: 26px;
|
|
287
|
-
position: absolute;
|
|
288
|
-
right: 3px;
|
|
289
|
-
text-align: center;
|
|
290
|
-
top: 3px;
|
|
291
|
-
width: 30px; }
|
|
292
|
-
|
|
293
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-close:hover:before,
|
|
294
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-close:active:before {
|
|
295
|
-
color: #777; }
|
|
296
|
-
|
|
297
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-message {
|
|
298
|
-
margin-bottom: .5em; }
|
|
299
|
-
|
|
300
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input {
|
|
301
|
-
margin-bottom: 1em; }
|
|
302
|
-
|
|
303
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input textarea,
|
|
304
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"],
|
|
305
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"],
|
|
306
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"],
|
|
307
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"] {
|
|
308
|
-
background: #f0f0f0;
|
|
309
|
-
border: 0;
|
|
310
|
-
font-family: inherit;
|
|
311
|
-
font-size: inherit;
|
|
312
|
-
font-weight: inherit;
|
|
313
|
-
margin: 0 0 .25em;
|
|
314
|
-
min-height: 2.5em;
|
|
315
|
-
padding: .25em .67em;
|
|
316
|
-
width: 100%; }
|
|
317
|
-
|
|
318
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input textarea:focus,
|
|
319
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"]:focus,
|
|
320
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"]:focus,
|
|
321
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"]:focus,
|
|
322
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"]:focus {
|
|
323
|
-
-webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
|
|
324
|
-
box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
|
|
325
|
-
outline: none; }
|
|
326
|
-
|
|
327
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-buttons:after {
|
|
328
|
-
clear: both;
|
|
329
|
-
content: '';
|
|
330
|
-
display: table; }
|
|
331
|
-
|
|
332
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button {
|
|
333
|
-
border: 0;
|
|
334
|
-
cursor: pointer;
|
|
335
|
-
float: right;
|
|
336
|
-
font-family: inherit;
|
|
337
|
-
font-size: .8em;
|
|
338
|
-
letter-spacing: .1em;
|
|
339
|
-
line-height: 1em;
|
|
340
|
-
margin: 0 0 0 .5em;
|
|
341
|
-
padding: .75em 2em;
|
|
342
|
-
text-transform: uppercase; }
|
|
343
|
-
|
|
344
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
|
|
345
|
-
-webkit-animation: ngdialog-pulse 1.1s infinite;
|
|
346
|
-
animation: ngdialog-pulse 1.1s infinite;
|
|
347
|
-
outline: none; }
|
|
348
|
-
|
|
349
|
-
@media (max-width: 568px) {
|
|
350
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
|
|
351
|
-
-webkit-animation: none;
|
|
352
|
-
animation: none; } }
|
|
353
|
-
|
|
354
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-primary {
|
|
355
|
-
background: #3288e6;
|
|
356
|
-
color: #fff; }
|
|
357
|
-
|
|
358
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-secondary {
|
|
359
|
-
background: #e0e0e0;
|
|
360
|
-
color: #777; }
|
|
361
|
-
|
|
362
|
-
/*#endregion*/
|
|
363
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"style.css","sources":["style.scss"],"sourcesContent":[],"mappings":"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","names":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@-webkit-keyframes ngdialog-fadeout{0%{opacity:1;}100%{opacity:0;}}@keyframes ngdialog-fadeout{0%{opacity:1;}100%{opacity:0;}}@-webkit-keyframes ngdialog-fadein{0%{opacity:0;}100%{opacity:1;}}@keyframes ngdialog-fadein{0%{opacity:0;}100%{opacity:1;}}.ngdialog,.ngdialog *,.ngdialog *:before,.ngdialog *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.ngdialog{position:fixed;overflow:auto;-webkit-overflow-scrolling:touch;z-index:10000;top:0;right:0;bottom:0;left:0;}.ngdialog-overlay{position:fixed;background:rgba(0,0,0,.4);top:0;right:0;bottom:0;left:0;-webkit-backface-visibility:hidden;-webkit-animation:ngdialog-fadein .5s;animation:ngdialog-fadein .5s;}.ngdialog.ngdialog-closing .ngdialog-overlay{-webkit-backface-visibility:hidden;-webkit-animation:ngdialog-fadeout .5s;animation:ngdialog-fadeout .5s;}.ngdialog-content{background:#fff;-webkit-backface-visibility:hidden;-webkit-animation:ngdialog-fadein .5s;animation:ngdialog-fadein .5s;}.ngdialog.ngdialog-closing .ngdialog-content{-webkit-backface-visibility:hidden;-webkit-animation:ngdialog-fadeout .5s;animation:ngdialog-fadeout .5s;}.ngdialog-close:before{font-family:'Helvetica',Arial,sans-serif;content:'×';cursor:pointer;}body.ngdialog-open{overflow:hidden;}@-webkit-keyframes ngdialog-flyin{0%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px);}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0);}}@keyframes ngdialog-flyin{0%{opacity:0;-webkit-transform:translateY(-40px);-ms-transform:translateY(-40px);transform:translateY(-40px);}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}}@-webkit-keyframes ngdialog-flyout{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0);}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px);}}@keyframes ngdialog-flyout{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}100%{opacity:0;-webkit-transform:translateY(-40px);-ms-transform:translateY(-40px);transform:translateY(-40px);}}.ngdialog.ngdialog-theme-default{padding-bottom:160px;padding-top:160px;}.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content{-webkit-animation:ngdialog-flyout .5s;animation:ngdialog-flyout .5s;}.ngdialog.ngdialog-theme-default .ngdialog-content{-webkit-animation:ngdialog-flyin .5s;animation:ngdialog-flyin .5s;background:#f0f0f0;border-radius:5px;color:#444;font-family:'Helvetica',sans-serif;font-size:1.1em;line-height:1.5em;margin:0 auto;max-width:100%;padding:1em;position:relative;width:450px;}.ngdialog.ngdialog-theme-default .ngdialog-close{border-radius:5px;cursor:pointer;position:absolute;right:0;top:0;}.ngdialog.ngdialog-theme-default .ngdialog-close:before{background:transparent;border-radius:3px;color:#bbb;content:'×';font-size:26px;font-weight:400;height:30px;line-height:26px;position:absolute;right:3px;text-align:center;top:3px;width:30px;}.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,.ngdialog.ngdialog-theme-default .ngdialog-close:active:before{color:#777;}.ngdialog.ngdialog-theme-default .ngdialog-message{margin-bottom:.5em;}.ngdialog.ngdialog-theme-default .ngdialog-input{margin-bottom:1em;}.ngdialog.ngdialog-theme-default .ngdialog-input textarea,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]{background:#fff;border:0;border-radius:3px;font-family:inherit;font-size:inherit;font-weight:inherit;margin:0 0 .25em;min-height:2.5em;padding:.25em .67em;width:100%;}.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus{-webkit-box-shadow:inset 0 0 0 2px #8dbdf1;box-shadow:inset 0 0 0 2px #8dbdf1;outline:none;}.ngdialog.ngdialog-theme-default .ngdialog-buttons{*zoom:1;}.ngdialog.ngdialog-theme-default .ngdialog-buttons:after{content:'';display:table;clear:both;}.ngdialog.ngdialog-theme-default .ngdialog-button{border:0;border-radius:3px;cursor:pointer;float:right;font-family:inherit;font-size:.8em;letter-spacing:.1em;line-height:1em;margin:0 0 0 .5em;padding:.75em 2em;text-transform:uppercase;}.ngdialog.ngdialog-theme-default .ngdialog-button:focus{-webkit-animation:ngdialog-pulse 1.1s infinite;animation:ngdialog-pulse 1.1s infinite;outline:none;}@media(max-width:568px){.ngdialog.ngdialog-theme-default .ngdialog-button:focus{-webkit-animation:none;animation:none;}}.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary{background:#3288e6;color:#fff;}.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary{background:#e0e0e0;color:#777;}.ngdialog.ngdialog-theme-plain{padding-bottom:160px;padding-top:160px;}.ngdialog.ngdialog-theme-plain .ngdialog-content{background:#fff;color:#444;font-family:'Helvetica Neue',sans-serif;font-size:1.1em;line-height:1.5em;margin:0 auto;max-width:100%;padding:1em;position:relative;width:450px;}.ngdialog.ngdialog-theme-plain .ngdialog-content h1,.ngdialog.ngdialog-theme-plain .ngdialog-content h2,.ngdialog.ngdialog-theme-plain .ngdialog-content h3,.ngdialog.ngdialog-theme-plain .ngdialog-content h4,.ngdialog.ngdialog-theme-plain .ngdialog-content h5,.ngdialog.ngdialog-theme-plain .ngdialog-content h6,.ngdialog.ngdialog-theme-plain .ngdialog-content p,.ngdialog.ngdialog-theme-plain .ngdialog-content ul,.ngdialog.ngdialog-theme-plain .ngdialog-content li{color:inherit;}.ngdialog.ngdialog-theme-plain .ngdialog-close{cursor:pointer;position:absolute;right:0;top:0;}.ngdialog.ngdialog-theme-plain .ngdialog-close:before{background:transparent;color:#bbb;content:"×";font-size:26px;font-weight:400;height:30px;line-height:26px;position:absolute;right:3px;text-align:center;top:3px;width:30px;}.ngdialog.ngdialog-theme-plain .ngdialog-close:hover:before,.ngdialog.ngdialog-theme-plain .ngdialog-close:active:before{color:#777;}.ngdialog.ngdialog-theme-plain .ngdialog-message{margin-bottom:.5em;}.ngdialog.ngdialog-theme-plain .ngdialog-input{margin-bottom:1em;}.ngdialog.ngdialog-theme-plain .ngdialog-input textarea,.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"],.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"],.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"],.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"]{background:#f0f0f0;border:0;font-family:inherit;font-size:inherit;font-weight:inherit;margin:0 0 .25em;min-height:2.5em;padding:.25em .67em;width:100%;}.ngdialog.ngdialog-theme-plain .ngdialog-input textarea:focus,.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"]:focus,.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"]:focus,.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"]:focus,.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"]:focus{-webkit-box-shadow:inset 0 0 0 2px rgba(0,0,0,.2);box-shadow:inset 0 0 0 2px rgba(0,0,0,.2);outline:none;}.ngdialog.ngdialog-theme-plain .ngdialog-buttons:after{clear:both;content:'';display:table;}.ngdialog.ngdialog-theme-plain .ngdialog-button{border:0;cursor:pointer;float:right;font-family:inherit;font-size:.8em;letter-spacing:.1em;line-height:1em;margin:0 0 0 .5em;padding:.75em 2em;text-transform:uppercase;}.ngdialog.ngdialog-theme-plain .ngdialog-button:focus{-webkit-animation:ngdialog-pulse 1.1s infinite;animation:ngdialog-pulse 1.1s infinite;outline:none;}@media(max-width:568px){.ngdialog.ngdialog-theme-plain .ngdialog-button:focus{-webkit-animation:none;animation:none;}}.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-primary{background:#3288e6;color:#fff;}.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-secondary{background:#e0e0e0;color:#777;}
|
|
@@ -1,442 +0,0 @@
|
|
|
1
|
-
/*#region LAYOUT*/
|
|
2
|
-
|
|
3
|
-
@-webkit-keyframes ngdialog-fadeout {
|
|
4
|
-
0% {
|
|
5
|
-
opacity: 1;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
100% {
|
|
9
|
-
opacity: 0;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@keyframes ngdialog-fadeout {
|
|
14
|
-
0% {
|
|
15
|
-
opacity: 1;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
100% {
|
|
19
|
-
opacity: 0;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
@-webkit-keyframes ngdialog-fadein {
|
|
24
|
-
0% {
|
|
25
|
-
opacity: 0;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
100% {
|
|
29
|
-
opacity: 1;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@keyframes ngdialog-fadein {
|
|
34
|
-
0% {
|
|
35
|
-
opacity: 0;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
100% {
|
|
39
|
-
opacity: 1;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.ngdialog,
|
|
44
|
-
.ngdialog *,
|
|
45
|
-
.ngdialog *:before,
|
|
46
|
-
.ngdialog *:after {
|
|
47
|
-
-webkit-box-sizing: border-box;
|
|
48
|
-
-moz-box-sizing: border-box;
|
|
49
|
-
box-sizing: border-box;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.ngdialog {
|
|
53
|
-
position: fixed;
|
|
54
|
-
overflow: auto;
|
|
55
|
-
-webkit-overflow-scrolling: touch;
|
|
56
|
-
z-index: 10000;
|
|
57
|
-
top: 0;
|
|
58
|
-
right: 0;
|
|
59
|
-
bottom: 0;
|
|
60
|
-
left: 0;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.ngdialog-overlay {
|
|
64
|
-
position: fixed;
|
|
65
|
-
background: rgba(0, 0, 0, 0.4);
|
|
66
|
-
top: 0;
|
|
67
|
-
right: 0;
|
|
68
|
-
bottom: 0;
|
|
69
|
-
left: 0;
|
|
70
|
-
-webkit-backface-visibility: hidden;
|
|
71
|
-
-webkit-animation: ngdialog-fadein 0.5s;
|
|
72
|
-
animation: ngdialog-fadein 0.5s;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.ngdialog.ngdialog-closing .ngdialog-overlay {
|
|
76
|
-
-webkit-backface-visibility: hidden;
|
|
77
|
-
-webkit-animation: ngdialog-fadeout 0.5s;
|
|
78
|
-
animation: ngdialog-fadeout 0.5s;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.ngdialog-content {
|
|
82
|
-
background: white;
|
|
83
|
-
-webkit-backface-visibility: hidden;
|
|
84
|
-
-webkit-animation: ngdialog-fadein 0.5s;
|
|
85
|
-
animation: ngdialog-fadein 0.5s;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.ngdialog.ngdialog-closing .ngdialog-content {
|
|
89
|
-
-webkit-backface-visibility: hidden;
|
|
90
|
-
-webkit-animation: ngdialog-fadeout 0.5s;
|
|
91
|
-
animation: ngdialog-fadeout 0.5s;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.ngdialog-close:before {
|
|
95
|
-
font-family: 'Helvetica', Arial, sans-serif;
|
|
96
|
-
content: '\00D7';
|
|
97
|
-
cursor: pointer;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
body.ngdialog-open {
|
|
101
|
-
overflow: hidden;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
/*#endregion*/
|
|
105
|
-
|
|
106
|
-
/*#region LAYOUT DEFAULT*/
|
|
107
|
-
|
|
108
|
-
@-webkit-keyframes ngdialog-flyin {
|
|
109
|
-
0% {
|
|
110
|
-
opacity: 0;
|
|
111
|
-
-webkit-transform: translateY(-40px);
|
|
112
|
-
transform: translateY(-40px);
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
100% {
|
|
116
|
-
opacity: 1;
|
|
117
|
-
-webkit-transform: translateY(0);
|
|
118
|
-
transform: translateY(0);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
@keyframes ngdialog-flyin {
|
|
123
|
-
0% {
|
|
124
|
-
opacity: 0;
|
|
125
|
-
-webkit-transform: translateY(-40px);
|
|
126
|
-
-ms-transform: translateY(-40px);
|
|
127
|
-
transform: translateY(-40px);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
100% {
|
|
131
|
-
opacity: 1;
|
|
132
|
-
-webkit-transform: translateY(0);
|
|
133
|
-
-ms-transform: translateY(0);
|
|
134
|
-
transform: translateY(0);
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
@-webkit-keyframes ngdialog-flyout {
|
|
139
|
-
0% {
|
|
140
|
-
opacity: 1;
|
|
141
|
-
-webkit-transform: translateY(0);
|
|
142
|
-
transform: translateY(0);
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
100% {
|
|
146
|
-
opacity: 0;
|
|
147
|
-
-webkit-transform: translateY(-40px);
|
|
148
|
-
transform: translateY(-40px);
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
@keyframes ngdialog-flyout {
|
|
153
|
-
0% {
|
|
154
|
-
opacity: 1;
|
|
155
|
-
-webkit-transform: translateY(0);
|
|
156
|
-
-ms-transform: translateY(0);
|
|
157
|
-
transform: translateY(0);
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
100% {
|
|
161
|
-
opacity: 0;
|
|
162
|
-
-webkit-transform: translateY(-40px);
|
|
163
|
-
-ms-transform: translateY(-40px);
|
|
164
|
-
transform: translateY(-40px);
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
.ngdialog.ngdialog-theme-default {
|
|
169
|
-
padding-bottom: 160px;
|
|
170
|
-
padding-top: 160px;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
|
|
174
|
-
-webkit-animation: ngdialog-flyout .5s;
|
|
175
|
-
animation: ngdialog-flyout .5s;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.ngdialog.ngdialog-theme-default .ngdialog-content {
|
|
179
|
-
-webkit-animation: ngdialog-flyin .5s;
|
|
180
|
-
animation: ngdialog-flyin .5s;
|
|
181
|
-
background: #f0f0f0;
|
|
182
|
-
border-radius: 5px;
|
|
183
|
-
color: #444;
|
|
184
|
-
font-family: 'Helvetica',sans-serif;
|
|
185
|
-
font-size: 1.1em;
|
|
186
|
-
line-height: 1.5em;
|
|
187
|
-
margin: 0 auto;
|
|
188
|
-
max-width: 100%;
|
|
189
|
-
padding: 1em;
|
|
190
|
-
position: relative;
|
|
191
|
-
width: 450px;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.ngdialog.ngdialog-theme-default .ngdialog-close {
|
|
195
|
-
border-radius: 5px;
|
|
196
|
-
cursor: pointer;
|
|
197
|
-
position: absolute;
|
|
198
|
-
right: 0;
|
|
199
|
-
top: 0;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.ngdialog.ngdialog-theme-default .ngdialog-close:before {
|
|
203
|
-
background: transparent;
|
|
204
|
-
border-radius: 3px;
|
|
205
|
-
color: #bbb;
|
|
206
|
-
content: '\00D7';
|
|
207
|
-
font-size: 26px;
|
|
208
|
-
font-weight: 400;
|
|
209
|
-
height: 30px;
|
|
210
|
-
line-height: 26px;
|
|
211
|
-
position: absolute;
|
|
212
|
-
right: 3px;
|
|
213
|
-
text-align: center;
|
|
214
|
-
top: 3px;
|
|
215
|
-
width: 30px;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,
|
|
219
|
-
.ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
|
|
220
|
-
color: #777;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.ngdialog.ngdialog-theme-default .ngdialog-message {
|
|
224
|
-
margin-bottom: .5em;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input {
|
|
228
|
-
margin-bottom: 1em;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input textarea,
|
|
232
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],
|
|
233
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],
|
|
234
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],
|
|
235
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"] {
|
|
236
|
-
background: #fff;
|
|
237
|
-
border: 0;
|
|
238
|
-
border-radius: 3px;
|
|
239
|
-
font-family: inherit;
|
|
240
|
-
font-size: inherit;
|
|
241
|
-
font-weight: inherit;
|
|
242
|
-
margin: 0 0 .25em;
|
|
243
|
-
min-height: 2.5em;
|
|
244
|
-
padding: .25em .67em;
|
|
245
|
-
width: 100%;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,
|
|
249
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,
|
|
250
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,
|
|
251
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,
|
|
252
|
-
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus {
|
|
253
|
-
-webkit-box-shadow: inset 0 0 0 2px #8dbdf1;
|
|
254
|
-
box-shadow: inset 0 0 0 2px #8dbdf1;
|
|
255
|
-
outline: none;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.ngdialog.ngdialog-theme-default .ngdialog-buttons {
|
|
259
|
-
*zoom: 1;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
|
|
263
|
-
content: '';
|
|
264
|
-
display: table;
|
|
265
|
-
clear: both;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button {
|
|
269
|
-
border: 0;
|
|
270
|
-
border-radius: 3px;
|
|
271
|
-
cursor: pointer;
|
|
272
|
-
float: right;
|
|
273
|
-
font-family: inherit;
|
|
274
|
-
font-size: .8em;
|
|
275
|
-
letter-spacing: .1em;
|
|
276
|
-
line-height: 1em;
|
|
277
|
-
margin: 0 0 0 .5em;
|
|
278
|
-
padding: .75em 2em;
|
|
279
|
-
text-transform: uppercase;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
|
|
283
|
-
-webkit-animation: ngdialog-pulse 1.1s infinite;
|
|
284
|
-
animation: ngdialog-pulse 1.1s infinite;
|
|
285
|
-
outline: none;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
@media (max-width: 568px) {
|
|
289
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
|
|
290
|
-
-webkit-animation: none;
|
|
291
|
-
animation: none;
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
|
|
296
|
-
background: #3288e6;
|
|
297
|
-
color: #fff;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
|
|
301
|
-
background: #e0e0e0;
|
|
302
|
-
color: #777;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
/*#endregion*/
|
|
306
|
-
|
|
307
|
-
/*#region LAYOUT PLAIN*/
|
|
308
|
-
|
|
309
|
-
.ngdialog.ngdialog-theme-plain {
|
|
310
|
-
padding-bottom: 160px;
|
|
311
|
-
padding-top: 160px;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content {
|
|
315
|
-
background: #fff;
|
|
316
|
-
color: #444;
|
|
317
|
-
font-family: 'Helvetica Neue',sans-serif;
|
|
318
|
-
font-size: 1.1em;
|
|
319
|
-
line-height: 1.5em;
|
|
320
|
-
margin: 0 auto;
|
|
321
|
-
max-width: 100%;
|
|
322
|
-
padding: 1em;
|
|
323
|
-
position: relative;
|
|
324
|
-
width: 450px;
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h1,
|
|
328
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h2,
|
|
329
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h3,
|
|
330
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h4,
|
|
331
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h5,
|
|
332
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content h6,
|
|
333
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content p,
|
|
334
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content ul,
|
|
335
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-content li {
|
|
336
|
-
color: inherit;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-close {
|
|
340
|
-
cursor: pointer;
|
|
341
|
-
position: absolute;
|
|
342
|
-
right: 0;
|
|
343
|
-
top: 0;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-close:before {
|
|
347
|
-
background: transparent;
|
|
348
|
-
color: #bbb;
|
|
349
|
-
content: "\00D7";
|
|
350
|
-
font-size: 26px;
|
|
351
|
-
font-weight: 400;
|
|
352
|
-
height: 30px;
|
|
353
|
-
line-height: 26px;
|
|
354
|
-
position: absolute;
|
|
355
|
-
right: 3px;
|
|
356
|
-
text-align: center;
|
|
357
|
-
top: 3px;
|
|
358
|
-
width: 30px;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-close:hover:before,
|
|
362
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-close:active:before {
|
|
363
|
-
color: #777;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-message {
|
|
367
|
-
margin-bottom: .5em;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input {
|
|
371
|
-
margin-bottom: 1em;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input textarea,
|
|
375
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"],
|
|
376
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"],
|
|
377
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"],
|
|
378
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"] {
|
|
379
|
-
background: #f0f0f0;
|
|
380
|
-
border: 0;
|
|
381
|
-
font-family: inherit;
|
|
382
|
-
font-size: inherit;
|
|
383
|
-
font-weight: inherit;
|
|
384
|
-
margin: 0 0 .25em;
|
|
385
|
-
min-height: 2.5em;
|
|
386
|
-
padding: .25em .67em;
|
|
387
|
-
width: 100%;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input textarea:focus,
|
|
391
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"]:focus,
|
|
392
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"]:focus,
|
|
393
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"]:focus,
|
|
394
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"]:focus {
|
|
395
|
-
-webkit-box-shadow: inset 0 0 0 2px rgba(0,0,0,0.2);
|
|
396
|
-
box-shadow: inset 0 0 0 2px rgba(0,0,0,0.2);
|
|
397
|
-
outline: none;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-buttons:after {
|
|
401
|
-
clear: both;
|
|
402
|
-
content: '';
|
|
403
|
-
display: table;
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button {
|
|
407
|
-
border: 0;
|
|
408
|
-
cursor: pointer;
|
|
409
|
-
float: right;
|
|
410
|
-
font-family: inherit;
|
|
411
|
-
font-size: .8em;
|
|
412
|
-
letter-spacing: .1em;
|
|
413
|
-
line-height: 1em;
|
|
414
|
-
margin: 0 0 0 .5em;
|
|
415
|
-
padding: .75em 2em;
|
|
416
|
-
text-transform: uppercase;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
|
|
420
|
-
-webkit-animation: ngdialog-pulse 1.1s infinite;
|
|
421
|
-
animation: ngdialog-pulse 1.1s infinite;
|
|
422
|
-
outline: none;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
@media (max-width: 568px) {
|
|
426
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
|
|
427
|
-
-webkit-animation: none;
|
|
428
|
-
animation: none;
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-primary {
|
|
433
|
-
background: #3288e6;
|
|
434
|
-
color: #fff;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-secondary {
|
|
438
|
-
background: #e0e0e0;
|
|
439
|
-
color: #777;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
/*#endregion*/
|