main.css
1.08 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
form input.ng-invalid.ng-dirty.ng-invalid-required {
background-color: #FFC0CB;
}
form input.ng-valid.ng-dirty.ng-valid-required {
background-color: #78FA89;
}
/*.ng-invalid.ng-dirty {*/
/*background-color: #FFC0CB;*/
/*}*/
/*.ng-valid.ng-dirty {*/
/*background-color: #78FA89;*/
/*}*/
.ui-select-container.ng-invalid.ng-dirty.ng-invalid-required .form-control {
background-color: #FFC0CB;
}
.ui-select-container.ng-valid.ng-dirty.ng-valid-required .form-control {
background-color: #78FA89;
}
.center-modal {
position: fixed;
top: 10%;
left: 18.5%;
z-index: 1050;
width: 80%;
height: 80%;
margin-left: -10%;
}
/* 固定表格,防止内容撑出表格 */
.fixTable {
table-layout: fixed;
}
/** 内容不换行,多余的用...表示 */
.fixTable thead th {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-ov
}
/** 内容不换行,多余的用...表示 */
.fixTable tbody td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}