1
|
|
2
|
|
3
|
.modal {
|
4
|
bottom: 0;
|
5
|
display: none;
|
6
|
left: 0;
|
7
|
outline: 0 none;
|
8
|
overflow: hidden;
|
9
|
position: fixed;
|
10
|
right: 0;
|
11
|
top: 0;
|
12
|
background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
|
13
|
z-index: 1050;
|
14
|
}
|
15
|
/*
|
16
|
*/
|
17
|
.modal-body iframe { min-height: 280px; }
|
18
|
.modal-body { width:100%; height:100%; }
|
19
|
.modal-body iframe { width:100%; height:100%; border:0;overflow:hidden }
|
20
|
|
21
|
.modal-open .modal {
|
22
|
overflow-x: hidden;
|
23
|
overflow-y: hidden;
|
24
|
}
|
25
|
.modal.in .modal-dialog {
|
26
|
transform: translate(0px, 0px);
|
27
|
}
|
28
|
|
29
|
.modal-dialog {
|
30
|
margin: 30px auto;
|
31
|
width: 600px;
|
32
|
}
|
33
|
.modal-dialog {
|
34
|
margin: 10px;
|
35
|
position: relative;
|
36
|
width: auto;
|
37
|
}
|
38
|
.modal-title {
|
39
|
line-height: 1.42857;
|
40
|
margin: 0;
|
41
|
height: 2.525em;
|
42
|
vertical-align: middle;
|
43
|
background: rgba(0, 0, 0, 0) linear-gradient(#CCE2EE, #1B4760 ) repeat scroll 0 0;
|
44
|
}
|
45
|
h4.modal-title {
|
46
|
font-size :1.5em;
|
47
|
color: #24515F;
|
48
|
margin: 0.225em 0;
|
49
|
padding: 0.225em 1.125em;
|
50
|
}
|
51
|
/*
|
52
|
*/
|
53
|
.modal-content {
|
54
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
55
|
background-color: #EEEDED;
|
56
|
}
|
57
|
.modal-content {
|
58
|
border-radius: 6px;
|
59
|
background-clip: padding-box;
|
60
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
61
|
outline: 0 none;
|
62
|
white-space: nowrap;
|
63
|
}
|
64
|
.modal-footer {
|
65
|
border-top: 1px solid #e5e5e5;
|
66
|
padding: 0.625em 1.925em;
|
67
|
text-align: right;
|
68
|
background: rgba(0, 0, 0, 0) linear-gradient(#1B4760 , #CCE2EE) repeat scroll 0 0;
|
69
|
}
|
70
|
#customAlert-overlay,
|
71
|
#customConfirm-overlay { display: none; opacity: 0.5; position: fixed; top: 0px; left: 0px; width: 100vw; height: 100vh; z-index: 99999; background: #000000; }
|
72
|
|
73
|
.close { font-size: 1.225em; background: #215A7A; color: #FFFFFF !important; line-height: 2.025em; position: absolute; right: -12px; text-align: center; top: -10px; width: 2.025em; text-decoration: none; font-weight: bold; -webkit-border-radius: 1.925em; -moz-border-radius: 1.925em; border-radius: 1.925em; -moz-box-shadow: 1px 1px 3px #000000; -webkit-box-shadow: 1px 1px 3px #000000; box-shadow: 1px 1px 3px #000000; }
|
74
|
.close:hover { background: #FF1100; }
|
75
|
.noborder {
|
76
|
-webkit-border-radius: 0em;
|
77
|
-moz-border-radius: 0em;
|
78
|
border-radius: 0em;
|
79
|
}
|
80
|
/*-------------------------------------------------------------------------------------*/
|
81
|
#delete-error-log { }
|
82
|
/* The Modal (background) */
|
83
|
.info-modal {
|
84
|
display: none; /* Hidden by default */
|
85
|
position: fixed; /* Stay in place */
|
86
|
z-index: 1; /* Sit on top */
|
87
|
padding-top: 50px; /* Location of the box */
|
88
|
left: 0;
|
89
|
top: 0;
|
90
|
width: 100%; /* Full width */
|
91
|
height: 100%; /* Full height */
|
92
|
overflow: auto; /* Enable scroll if needed */
|
93
|
background-color: rgb(0,0,0); /* Fallback color */
|
94
|
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
|
95
|
}
|
96
|
|
97
|
/* Modal Content */
|
98
|
.info-modal-content {
|
99
|
position: relative;
|
100
|
background-color: #fefefe;
|
101
|
margin: 2% auto;
|
102
|
padding: 0;
|
103
|
border: 1px solid #888;
|
104
|
width: 70%;
|
105
|
/* max-height: 40.225em;*/
|
106
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
|
107
|
-webkit-animation-name: animatetop;
|
108
|
-webkit-animation-duration: 0.4s;
|
109
|
animation-name: animatetop;
|
110
|
animation-duration: 0.4s
|
111
|
}
|
112
|
|
113
|
/* Add Animation */
|
114
|
@-webkit-keyframes animatetop {
|
115
|
from {top:-300px; opacity:0}
|
116
|
to {top:0; opacity:1}
|
117
|
}
|
118
|
|
119
|
@keyframes animatetop {
|
120
|
from {top:-300px; opacity:0}
|
121
|
to {top:0; opacity:1}
|
122
|
}
|
123
|
|
124
|
/* The Close Button */
|
125
|
.close {
|
126
|
color: white;
|
127
|
float: right;
|
128
|
font-size: 28px;
|
129
|
font-weight: bold;
|
130
|
border: 0 none;
|
131
|
}
|
132
|
|
133
|
#delete_php_error-log,
|
134
|
.close:hover,
|
135
|
.close:focus {
|
136
|
color: #000;
|
137
|
text-decoration: none;
|
138
|
cursor: pointer;
|
139
|
}
|
140
|
.info-modal-footer,
|
141
|
.info-modal-header {
|
142
|
line-height: 4.5;
|
143
|
padding: 0 1.225em;
|
144
|
background-color: #5C9AB8;
|
145
|
color: #ffffff;
|
146
|
}
|
147
|
|
148
|
.info-modal-header {line-height: 2.295;}
|
149
|
|
150
|
|
151
|
.info-modal-body {
|
152
|
padding: 2px 16px;
|
153
|
border: 1px solid #4B7F98;
|
154
|
-webkit-box-shadow: inset 2px 2px 4px -4px rgba(44,95,115,1);
|
155
|
-moz-box-shadow: inset 2px 2px 4px -4px rgba(44,95,115,1);
|
156
|
box-shadow: inset 2px 2px 4px -4px rgba(44,95,115,1);
|
157
|
|
158
|
}
|
159
|
|
160
|
.info-modal-body iframe { width: 100%; height: 20.225em; border: 0 none; }
|
161
|
.gradient-top { background: rgba(0, 0, 0, 0) linear-gradient(#175476, #ffffff) repeat scroll 0 0; }
|
162
|
.gradient-bottom { background: rgba(0, 0, 0, 0) linear-gradient(#ffffff, #175476) repeat scroll 0 0; }
|
163
|
|
164
|
.info-modal-header { background: #538199 none repeat scroll 0 0; padding-top: 0.1225em; }
|
165
|
.info-modal-footer { background: #538199 none repeat scroll 0 0; }
|
166
|
.info-modal-header h2 { color: #EEEEEE; font-weight: normal; }
|
167
|
/*-------------------------------------------------------------------------------------*/
|
168
|
|
169
|
#info-modal-body {
|
170
|
max-height: 20.625em;
|
171
|
min-height: 10.625em;
|
172
|
margin: 0;
|
173
|
padding: 0.525em 1.525em;
|
174
|
overflow: scroll;
|
175
|
/*width: 100%;*/
|
176
|
}
|
177
|
|