jbox.css
3.54 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
@charset "utf-8";
/*
提示:CSS 样式只允许修改颜色属性,或图片的地址(图片大小要和默认的一致)。border:dotted solid double dashed
*/
*:focus {
outline: none;
}
/* fade */
.jbox-fade {
background-color: #000000;
}
/* drag */
.jbox-drag {
border: 1px dashed #A5C11B;
}
/* jbox */
div.jbox {
padding: 0px;
border: none;
font-size: 12px;
}
/* border */
div.jbox .jbox-border {
/* background: none repeat scroll 0 0 #000000; */
filter: alpha(opacity = 20);
-moz-opacity: 0.2;
opacity: 0.2;
}
/* container */
div.jbox .jbox-container {
background-color: #f3f5f0;
border: 1px solid #c3c2c2;
}
/* title-panel */
div.jbox .jbox-title-panel { /*background:#A5C11B;*/
background: #aeb4b8;
/* background-image: url('/public/controls/dhtmlx/dhtmlxToolbar/codebase/imgs/dhxtoolbar_dhx_skyblue/dhxtoolbar_imgs.gif'); */
background-repeat: repeat-x;
background-position: 0px -1px;
color: #fff;
border-bottom: 1px solid #CCCCCC;
}
div.jbox .jbox-title {
font-weight: bold; /*color:#ffffff;*/
white-space:nowrap;
text-overflow:ellipsis;
}
div.jbox .jbox-title-icon {
background: url(images/jbox-title-icon.gif) no-repeat scroll 3px 5px
transparent;
}
div.jbox .jbox-close, div.jbox .jbox-close-hover {
background: url(images/jbox-close1.gif) no-repeat scroll 0px 0px
transparent;
}
div.jbox .jbox-close-hover {
background-position: -16px 0;
}
/* content */
div.jbox .jbox-content {
min-height: 24px;
line-height: 18px; /* color:#444444; */
}
div.jbox .jbox-content-loading {
background-color: #E6E6E6;
}
div.jbox .jbox-content-loading-image {
background: url(images/jbox-content-loading.gif) no-repeat bottom center;
}
/* button-panel */
div.jbox .jbox-button-panel {
border-top: 1px solid #CCCCCC; /* background-color: #EEEEEE; */
text-align: center !important;
}
div.jbox .jbox-bottom-text {
text-indent: 10px;
color: #444444;
}
div.jbox .jbox-button {
background-color: #7ac142;
border: medium none;
border-radius: 3px;
color: #ffffff;
cursor: pointer;
font-size: 14px;
font-weight: normal;
height: 26px;
margin: 0 5px;
min-width: 100px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
/* background: url(/public/images/btn_bg.jpg) repeat-x transparent;
background:url(images/jbox-button2.png) repeat-x transparent;lynn.chen
border:#AAAAAA 1px solid;color:#888888;margin:1px 7px 0px 0px;height:22px;cursor:default;
padding-left: 15px; */
}
div.jbox .jbox-button-hover {
/* background: url(/public/images/btn_bg_hover.jpg) repeat-x transparent; */
/*background-position:0px -20px;color:#666666;*/
background-color: #90cf5f;
}
div.jbox .jbox-button-active {
background-position: 0px -40px;
}
div.jbox-warning .jbox .jbox-button-panel {
background-color: #f3f5f0;
}
/* tip-color */
div.jbox .jbox-tip-color {
background-color: #edf3df;
border-color: #edf3df;
border-radius: 10px 10px 10px 10px;
color: #111111;
}
/* icons */
div.jbox span.jbox-icon {
background: url(images/jbox-icons.png) no-repeat scroll 0 0 transparent;
_background: url(images/jbox-icons-ie6.gif) no-repeat scroll 0 0
transparent;
}
div.jbox span.jbox-icon-info {
background-position: 0 0;
}
div.jbox span.jbox-icon-question {
background-position: -36px 0;
}
div.jbox span.jbox-icon-success {
background-position: -72px 0;
}
div.jbox span.jbox-icon-warning {
background-position: -108px 0;
}
div.jbox span.jbox-icon-error {
background-position: -144px 0;
}
div.jbox span.jbox-icon-none {
display: none;
overflow: hidden;
}
div.jbox span.jbox-icon-loading {
background: url(images/jbox-loading1.gif) no-repeat scroll 0 0
transparent;
}