-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui.css
146 lines (138 loc) · 2.73 KB
/
ui.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
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
a {
text-decoration: none;
}
ul, li {
list-style: none;
margin: 0px;
padding: 0px;
}
.ui-dialog #dialog_loading {
position: fixed;
top: 50%;
left: 50%;
width: 208px;
height: 13px;
margin: -6px 0 0 -104px;
}
.ui-widget-overlay {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
width: auto !important;
opacity: .75;
filter:Alpha(Opacity=75);
background: #000;
}
.ui-dialog {
position: absolute;
background-color: #fff;
color: #000;
border: 4px solid #22A7F2;
width: auto;
}
.ui-dialog .ui-dialog-titlebar {
position: relative;
width: 100%;
height: 33px;
background-color: #22A7F2;
}
.ui-dialog .ui-dialog-title {
float: left;
height: 33px;
line-height: 33px;
font-size: 16px;
padding-left: 10px;
color: white;
}
.ui-dialog .ui-dialog-titlebar-close {
position: absolute;
right: 10px;
top: 5px;
width: 19px;
border: none;
}
.ui-dialog .ui-dialog-titlebar-close span {
display: block;
margin: 1px;
background: transparent url('/images/refinery/cross.png') top left no-repeat;
text-indent:-10000px;
}
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
padding: 0;
}
/** Hide the tab without using display:none; This is required to hide flash embeds etc.**/
.ui-tabs-hide {
display: block !important;
height: 0 !important;
width: 0 !important;
border: 0px none !important;
visibility: hidden !important;
position: absolute;
left: -10000px;
top: -10000px;
}
/** Makes sure your embed does not have leftover height when hidden **/
.ui-tabs-hide object,
.ui-tabs-hide embed {
height: 0px !important;
width: 0px !important;
}
.ui-tabs li.ui-state-default {
float: left;
list-style: none;
margin-right: 2px;
}
.ui-tabs .ui-state-default a {
background-color: #bcbcbc;
color: white;
padding: 8px 13px;
border-bottom: none;
display: block;
margin-top: 6px;
}
.ui-tabs .ui-state-active a {
background-color: #808080;
padding: 11px 13px;
margin-top: 0px;
}
.ui-dialog iframe {
clear:both;
border: 0px none;
margin-bottom:-1px;
margin-top:1px;
width: 100% !important;
}
/* Browser Hacks */
/* remove borders from images */
a img {
border: 0px none;
}
/*
Firefox Dotted Line Fix
- http://sonspring.com/journal/removing-dotted-links
*/
a:focus {
outline: none;
}
/*
Clearfix docs
- Main docs: http://positioniseverything.net/easyclearing.html
- IE7 change: http://www.456bereastreet.com/archive/200603/new_clearing_method_needed_for_ie7/
*/
.clearfix:after, section:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix, section {
display: inline-block;
}
/* Hide from IE Mac \*/
.clearfix, section {
display:block;
}
/* End hide from IE Mac */