-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathddmultiplefields.css
More file actions
114 lines (95 loc) · 2.61 KB
/
ddmultiplefields.css
File metadata and controls
114 lines (95 loc) · 2.61 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
.ddMultipleField {
display: block;
border-collapse: collapse;
position: relative;
}
.ddMultipleField a.false {
border-bottom-width: 1px;
border-bottom-style: dotted;
text-decoration: none;
}
.ddMultipleField input,
.ddMultipleField textarea,
.ddMultipleField button {
margin-right: 5px;
}
.ddMultipleField input.DatePicker {
width: 147px !important;
padding-left: 24px !important;
}
.ddMultipleField input[disabled] {
opacity: .5;
cursor: not-allowed;
}
.ddMultipleField textarea {resize: vertical;}
.ddMultipleField tr th,
.ddMultipleField tr td.ddMultipleField_row_col {
min-height: 23px;
padding: 5px 7px;
vertical-align: top;
}
.ddMultipleField tr th,
.ddMultipleField tr td.ddMultipleField_row_col:last-child {
white-space: nowrap;
}
.ddMultipleField tr th {text-align: left;}
.ddMultipleField tr td.ddMultipleField_row_col,
.ddMultipleField tr td.ddSortHandle {
border: 2px solid #FFFFFF;
-webkit-transition: background 0.3s ease-out;
-moz-transition: background 0.3s ease-out;
-ms-transition: background 0.3s ease-out;
-o-transition: background 0.3s ease-out;
transition: background 0.3s ease-out;
background: rgb(235, 235, 235);
}
.ddMultipleField tr td.ddMultipleField_row_col:last-child {
border-color: transparent;
background: none !important;
}
.ddMultipleField tr td.ddMultipleField_row_col:last-child button {
width: 1.8em !important;
height: 1.8em !important;
padding: 0 !important;
border-radius: 50%;
vertical-align: middle;
text-align: center;
}
.ddMultipleField tr td.ddMultipleField_row_col:last-child button.fa-plus {
font-weight: 900;
}
.ddMultipleField tr td.ddSortHandle {
border-right: none;
width: 20px;
padding: 0;
vertical-align: middle;
background: transparent;
}
.ddMultipleField tr td.ddMultipleField_row_col:nth-child(2) {border-left: none;}
.ddMultipleField tr td.ddSortHandle div {
width: 20px;
padding: 10px 0;
-webkit-transition: opacity 0.3s ease-out;
-moz-transition: opacity 0.3s ease-out;
-ms-transition: opacity 0.3s ease-out;
-o-transition: opacity 0.3s ease-out;
transition: opacity 0.3s ease-out;
opacity: .3;
cursor: n-resize;
text-align: center;
font-size: 20px;
color: rgb(0, 111, 167);
}
.ddMultipleField tr.ddMultipleField_row:hover td.ddMultipleField_row_col,
.ddMultipleField tr.ddMultipleField_row:hover td.ddSortHandle {background: #B2E3FF;}
.ddMultipleField tr.ddMultipleField_row:hover td.ddSortHandle div {opacity: 1;}
.ddMultipleField_row_col_edit {
text-align: right;
font-style: italic;
}
.ddMultipleField .ui-state-highlight td {padding: 0;}
.ddMultipleField .ui-state-highlight div {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .07);
}