-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.css
More file actions
executable file
·108 lines (99 loc) · 1.98 KB
/
default.css
File metadata and controls
executable file
·108 lines (99 loc) · 1.98 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
@charset "utf-8";
body{
margin: 0;
padding: 0;
}
/* bootstrap 的 select默认太宽了 */
.autowidth{
width:auto;
}
#grid-help-info div.alert{
margin-bottom:0px;
}
/* data_list的样式 */
div.dataListHeader{
background-color: #FAFAFA;
background-image: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
background-repeat: repeat-x;
padding: 5px 20px 5px 20px;
min-height: 20px;
}
div.dataListLeftMenuArea{
float:left;
width:170px;
}
div.dataListDataArea{
overflow:hidden;
}
div.clearBoth{
clear:both;
height:1px;
margin-top:-1px;
overflow:hidden;
}
/* artDialog中内有table时,总是底部有白边。。需要设置此值 */
td.d-main{
line-height:20px;
}
td.d-main table.table-bordered{
border-style:none;
border-collapse:collapse;
}
td.d-main table.table-bordered td{
height:30px;
vertical-align: middle;
}
td.d-main table.table-bordered td.text-right{
text-align:right;
}
/* 文件上传的所需要的样式 从 jquer.fileupload-ui.css 中精简出来的 */
.fileinput-button {
position: relative;
overflow: hidden;
float: left;
margin-right: 4px;
}
.fileinput-button input {
position: absolute;
top: 0;
right: 0;
margin: 0;
opacity: 0;
filter: alpha(opacity=0);
transform: translate(-300px, 0) scale(4);
font-size: 23px;
direction: ltr;
cursor: pointer;
}
/* bootstrap 导航栏焦点的颜色修正 */
.subnav .nav > li > a:focus {
background-color: #D9EDF7;
text-decoration: none;
color:#054B6E;
}
/* 修改数据界面的样式 */
table.itemAddTable {
max-width: 800px;
}
td.itemAddTdLabel {
min-width: 80px;
max-width: 200px;
}
td.itemAddTdContent{
}
/* grid中每行文字颜色 */
tr.font-color-black{
color:black;
}
tr.font-color-red{
color:red;
}
tr.font-color-orange{
color:orange;
}
tr.font-color-blue{
color:blue;
}
tr.font-color-green{
color:green;
}