forked from MarioRinaldi/rrjs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrr.css
More file actions
148 lines (129 loc) · 2.81 KB
/
rr.css
File metadata and controls
148 lines (129 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/* rr.popupMessage */
.rrPopupMessage {
/* posicionamento */
top: 50%;
left: 50%;
width: 200px;
height: 150px;
margin-left: -100px; /* Metade do tamanho de width */
margin-top: -75px; /* Metade do tamanho de height */
position: absolute; /* Posicionamento para o IE */
z-index: 1001;
/* formatação */
opacity: 0.9;
filter: alpha(opacity=90);
text-align: center;
padding: 8px;
-moz-border-radius: 10px;
border-radius: 10px;
border: 4px solid #CCCCCC;
line-height: 20px;
background: #F9F9F9;
}
body > .rrPopupMessage {
position: fixed; /* Posicionamento para navegadores modernos */
}
.rrPopupMessage h1 {
font-size: 16px;
font-weight: bold;
}
.rrPopupMessage .text {
-moz-border-radius: 10px;
border-radius: 10px;
color: #AAAAAA;
border: 1px solid #CCCCCC;
background: #FFFFFF;
font-size: 14px;
}
.rrPopupMessage .buttonDiv {
height: 20%;
}
.rrPopupMessage .button {
width: 80px;
color:#AAAAAA;
background:#FFFFFF;
border: 1px solid white;
border-right:1px solid gray;
border-bottom:1px solid gray;
-moz-border-radius: 6px;
border-radius: 6px;
font-weight: bold;
margin-top: 8px; //Hack
}
.rrPopupMessage .button::-moz-focus-inner {
border:0;
}
.rrPopupMessage .button:focus{
outline : none;
}
.rrPopupMessage .ok {
}
.rrPopupMessage .cancel {
margin-right: 20px;
}
/* rr.popupMessage FIM */
/* rr.popupFrame */
.rrPopupFrame {
/* posicionamento */
top: 50%;
left: 50%;
width: 200px;
height: 250px;
margin-left: -100px; /* Metade do tamanho de width */
margin-top: -125px; /* Metade do tamanho de height */
position: absolute; /* Posicionamento para o IE */
overflow: hidden;
z-index: 1001;
/* formatação */
opacity: 0.9;
filter: alpha(opacity=90);
color: #AAAAAA;
background: #F9F9F9;
border: 3px solid #CCCCCC;
padding: 1px;
}
body > .rrPopupFrame {
position: fixed; /* Posicionamento para navegadores modernos */
}
.rrPopupFrame .frameContent {
position: absolute;
display: block;
width: 100%;
height: 100%;
z-index: 1002;
}
.rrPopupFrame .x {
position: relative;
float: right;
z-index: 1003;
}
.rrPopupFrame .x #xImg {
cursor: pointer;
}
/* rr.popupFrame FIM */
/* rr.createOverlay */
.rrOverlay { /* IE */
display: none;
}
body > .rrOverlay {
position: fixed;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
display: block;
z-index:1000;
background:#000000;
filter: alpha(opacity=90);
opacity:0.9;
}
/* rr.createOverlay FIM */
/* *** AJAX *** */
/* rr.replaceContent */
.rrLoadingText {
width: 100%;
text-align: center;
color: #CCCCCC;
font-weight: bold;
font-size: 20px;
}