-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoverlay-child.css
99 lines (80 loc) · 1.88 KB
/
overlay-child.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
98
html.js {
background:transparent !important;
overflow-y:scroll;
overflow-x:hidden;
}
html.js body {
background: transparent !important;
padding:20px 40px;
}
#overlay {
display:block;
position:relative;
}
#overlay-titlebar {
position:relative;
z-index:100;
}
#overlay-title { display:none; }
#overlay-close-wrapper {
position:absolute;
right:0px;
width:30px;
}
#overlay-close,
#overlay-close:hover {
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
background:#444 url(images/buttons.png) -4000px 50% no-repeat;
display: block;
position: absolute;
height: 20px;
width: 20px;
margin: 5px;
padding: 0px;
}
#overlay-close:active { background:#333 url(images/buttons.png) -4400px 50% no-repeat; }
#overlay-content {
background:#fff;
position:relative;
padding:0px 0px 10px;
min-height:400px;
border-radius:6px 6px 5px 5px;
box-shadow:#111 0px 0px 10px;
-moz-border-radius:6px 6px 5px 5px;
-moz-box-shadow:#111 0px 0px 10px;
-webkit-border-radius:6px 6px 5px 5px;
-webkit-box-shadow:#111 0px 0px 10px;
}
#overlay-content .limiter { margin:0px 20px; }
#branding {
border-radius:5px 5px 0px 0px;
-moz-border-radius:5px 5px 0px 0px;
-webkit-border-radius:5px 5px 0px 0px;
}
#branding .limiter { margin-left:0px; }
#branding .breadcrumb-depth-0 a,
#branding .breadcrumb-depth-0 span {
border-radius:5px 0px 0px 0px;
-moz-border-radius:5px 0px 0px 0px;
-webkit-border-radius:5px 0px 0px 0px;
}
/**
* Tabs on the overlay.
*/
#overlay-tabs { display:none; }
/**
* Shortcut integration.
*/
#overlay-titlebar .add-or-remove-shortcuts {
position:absolute;
top:5px;
right:25px;
padding:0px;
}
#overlay-titlebar .add-or-remove-shortcuts a { background-color:#444; }
#overlay-titlebar .add-or-remove-shortcuts a:active {
background-color:#333;
text-shadow:#555 0px 1px 0px;
}