Skip to content

Commit 83ee041

Browse files
authored
first commit
1 parent f73679d commit 83ee041

File tree

1 file changed

+192
-0
lines changed

1 file changed

+192
-0
lines changed

css/modalbox_v1.0.css

Lines changed: 192 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
.noselect
2+
{
3+
-webkit-touch-callout: none;
4+
-webkit-user-select: none;
5+
-khtml-user-select: none;
6+
-moz-user-select: none;
7+
-ms-user-select: none;
8+
user-select: none;
9+
}
10+
.myOwnDialog_overlay
11+
{
12+
13+
}
14+
.mdl_top
15+
{
16+
position: absolute;
17+
background-color: red;
18+
left: 4px;
19+
right: 4px;
20+
height: 4px;
21+
top: 0;
22+
cursor: n-resize;
23+
opacity: 0.0;
24+
}
25+
.mdl_bottom
26+
{
27+
position: absolute;
28+
background-color: red;
29+
left: 4px;
30+
right: 4px;
31+
height: 4px;
32+
bottom: 0;
33+
cursor: s-resize;
34+
opacity: 0.0;
35+
}
36+
.mdl_left
37+
{
38+
position: absolute;
39+
background-color: red;
40+
top: 4px;
41+
bottom: 4px;
42+
width: 4px;
43+
left: 0px;
44+
cursor: w-resize;
45+
opacity: 0.0;
46+
}
47+
.mdl_right
48+
{
49+
position: absolute;
50+
background-color: red;
51+
top: 4px;
52+
bottom: 4px;
53+
width: 4px;
54+
right: 0px;
55+
cursor: e-resize;
56+
opacity: 0.0;
57+
}
58+
.titlebar
59+
{
60+
position: absolute;
61+
top: 4px;
62+
left: 4px;
63+
right: 4px;
64+
height: 30px;
65+
}
66+
.titlebar_left
67+
{
68+
position: absolute;
69+
left: 0px;
70+
right: 30px;
71+
height: 30px;
72+
cursor: move;
73+
}
74+
.titlebar_right
75+
{
76+
position: absolute;
77+
width: 30px;
78+
right: 0px;
79+
height: 30px;
80+
color: black;
81+
cursor: default;
82+
}
83+
.mdl_top_left
84+
{
85+
position: absolute;
86+
background-color: blue;
87+
top: 0px;
88+
left: 0px;
89+
width: 4px;
90+
height: 4px;
91+
cursor: nw-resize;
92+
opacity: 0.0;
93+
}
94+
.mdl_top_right
95+
{
96+
position: absolute;
97+
background-color: blue;
98+
top: 0px;
99+
right: 0px;
100+
width: 4px;
101+
height: 4px;
102+
cursor: ne-resize;
103+
opacity: 0.0;
104+
}
105+
.mdl_bottom_left
106+
{
107+
position: absolute;
108+
background-color: blue;
109+
bottom: 0px;
110+
left: 0px;
111+
width: 4px;
112+
height: 4px;
113+
cursor: sw-resize;
114+
opacity: 0.0;
115+
}
116+
.mdl_bottom_right
117+
{
118+
position: absolute;
119+
background-color: blue;
120+
bottom: 0px;
121+
right: 0px;
122+
width: 4px;
123+
height: 4px;
124+
cursor: se-resize;
125+
opacity: 0.0;
126+
}
127+
.titlebar_title
128+
{
129+
margin: 5px;
130+
font-weight: bold;
131+
white-space: nowrap;
132+
overflow: hidden;
133+
text-overflow: ellipsis;
134+
}
135+
.mdl_box_body
136+
{
137+
position: absolute;
138+
left: 4px;
139+
right: 4px;
140+
top: 34px;
141+
bottom: 4px;
142+
overflow: hidden;
143+
}
144+
.titlebar_right .close
145+
{
146+
margin: 5px;
147+
margin-left: 11px;
148+
font-weight: bold
149+
}
150+
body
151+
{
152+
153+
}
154+
.parent
155+
{
156+
position: relative;
157+
margin: 50px;
158+
overflow: hidden;
159+
height: 200px;
160+
width: 180px;
161+
background: #ddd;
162+
}
163+
.scrollable
164+
{
165+
overflow-y: scroll;
166+
position: absolute;
167+
padding: 0 17px 0 0;
168+
width: 180px;
169+
height: 100%;
170+
}
171+
.scrollbar
172+
{
173+
position: absolute;
174+
overflow: auto;
175+
top: 0px;
176+
right: 0px;
177+
z-index: 2;
178+
background: #444;
179+
width: 7px;
180+
border-radius: 5px;
181+
}
182+
.b_scroll
183+
{
184+
position: fixed;
185+
top: 0px;
186+
right: 0px;
187+
z-index: 2;
188+
background: #444;
189+
width: 7px;
190+
border-radius: 5px;
191+
bottom: 0;
192+
}

0 commit comments

Comments
 (0)