-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimpledialog.css
97 lines (87 loc) · 1.92 KB
/
simpledialog.css
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
/* Skin for Simple Dialog Box Plugin */
.dlg-box {
background-color:white;
border:1px solid #ccc;
-webkit-box-shadow:0 1px 5px rgba(0,0,0,.2);
-mz-box-shadow:0 1px 5px rgba(0,0,0,.2);
box-shadow:0 1px 5px rgba(0,0,0,.2);
z-index:9999;
color:#666;
position:fixed !important;
}
.dlg-box .dlg-title {
margin:0;
padding: 0 .8em;
font:inherit;
color:inherit;
font-weight:bold;
height:2em;
line-height:2em;
overflow:hidden;
background-color:#eee;
cursor:move;
}
.dlg-box .dlg-title,
.dlg-box .dlg-minmax,
.dlg-box .dlg-close {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.dlg-box .dlg-content {
border-top:1px solid #ccc;
position: absolute !important;
padding: 1em;
top:2em;
bottom:0;
right:0;
left:0;
overflow:auto;
}
.dlg-box .dlg-content iframe {
display:block;
border:none;
background:none;
margin:0;
padding:0;
overflow:auto;
width:100%;
height:100%;
}
.dlg-box .dlg-content::-webkit-scrollbar {
width:8px;
height:8px;
background-color:#f5f5f5;
border-left:1px solid #ccc;
}
.dlg-box .dlg-content::-webkit-scrollbar-thumb {
background-color:#666;
border:none;
}
.dlg-box .dlg-content::-webkit-scrollbar-thumb:hover {background-color:#555}
.dlg-box .dlg-content::-webkit-scrollbar-thumb:active {background-color:#444}
.dlg-box .dlg-minmax,
.dlg-box .dlg-close {
background: #eee;
font:inherit;
font-family: Arial, Sans-Serif;
font-style:normal;
font-weight:bold;
font-size:150%;
line-height:1.35em;
color:#aaa;
float: right;
padding: 0 0.3em;
//position:absolute;
top:0;
text-align:center;
cursor:pointer;
}
/*.dlg-box .dlg-minmax:focus {
border-width:0;
outline:none;
}*/
.dlg-box .dlg-minmax:hover, .dlg-box .dlg-close:hover {color:#D77}
.dlg-box .dlg-minmax:focus, .dlg-box .dlg-close:focus {color:#C90000}
.dlg-box .dlg-minmax:active, .dlg-box .dlg-close:active {color:#444}