Skip to content

Commit f79d551

Browse files
authored
Create sourcejail_modal_alert.css
1 parent 1bd4f57 commit f79d551

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed

css/sourcejail_modal_alert.css

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
/*.popup-dialog {
2+
-webkit-transform: translate(0,-25%);
3+
-ms-transform: translate(0,-25%);
4+
transform: translate(0,-25%);
5+
-webkit-transition: -webkit-transform 0.3s ease-out;
6+
-moz-transition: -moz-transform 0.3s ease-out;
7+
-o-transition: -o-transform 0.3s ease-out;
8+
transition: transform 0.3s ease-out;
9+
}*/
10+
.popup-dialog {
11+
width: 400px;
12+
margin: auto;
13+
position: fixed;
14+
z-index: 9999;
15+
right:auto;
16+
bottom:auto;
17+
}
18+
.popup-dialog {
19+
left:450px;
20+
top:200px;
21+
}
22+
.popup-content {
23+
position: relative;
24+
background-color: #ffffff;
25+
border: 1px solid #999999;
26+
border: 1px solid rgba(0,0,0,0.2);
27+
border-radius: 6px;
28+
-webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
29+
box-shadow: 0 3px 9px rgba(0,0,0,0.5);
30+
background-clip: padding-box;
31+
outline: none;
32+
}
33+
.popup-header {
34+
padding: 10px;
35+
border-bottom: 1px solid #e5e5e5;
36+
background-color:#3C3C3C;
37+
min-height: 16.42857143px;
38+
}
39+
40+
.popup-header .mclose {
41+
margin-top: -2px;
42+
}
43+
.popup-dialog button.mclose {
44+
padding: 0;
45+
cursor: pointer;
46+
background: #D9483D;
47+
border: 0;
48+
-webkit-appearance: none;
49+
}
50+
.popup-dialog .mclose {
51+
float: right;
52+
font-size: 21px;
53+
font-weight: bold;
54+
line-height: 1;
55+
color: #fff;
56+
text-shadow: 0 1px 0 #ffffff;
57+
filter: alpha(opacity=20);
58+
}
59+
.popup-dialog h4 {
60+
color: #343434;
61+
}
62+
.popup-title {
63+
margin: 0;
64+
line-height: 1.42857143;
65+
}
66+
.popup-dialog h4 {
67+
font: 24px/24px 'Istok Web';
68+
font-weight: normal;
69+
line-height: 24px;
70+
color: #fff;
71+
font-weight: 700;
72+
}
73+
.popup-body {
74+
position: relative;
75+
padding: 20px;
76+
}
77+
.response-message .popup-floating-pan {
78+
background-color: #000;
79+
width: 100%;
80+
height: 100%;
81+
position: fixed;
82+
top: 0px;
83+
left: 0px;
84+
z-index: 9999;
85+
opacity: 0.3;
86+
}
87+
88+
.popup-dialog .popup-btns{
89+
padding: 10px;
90+
text-align: right;
91+
}

0 commit comments

Comments
 (0)