-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputfieldMatrix.css
More file actions
79 lines (59 loc) · 1.89 KB
/
InputfieldMatrix.css
File metadata and controls
79 lines (59 loc) · 1.89 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
table.Matrix {width: 100%;}
li.InputfieldMatrix table tr {border: none;}
table.Matrix th {
padding-bottom: 5px;
font-weight: bold;
}
table.Matrix tr:hover td, table.Matrix tr:hover th.MatrixRowNumber {background: #EEE;}
li.InputfieldMatrix table tr.highlight_row {background: #E8E8E8;}
li.InputfieldMatrix table tr.highlight_last_blank :not(th) {background: #FFFFDD; background: #F2FAFF; background: #FFFFEA !important;}
table.Matrix input[type=text] {width: 100%;}
table.Matrix th,
table.Matrix td {
padding: 6px 2px;
border-bottom: 1px solid #ddd;
}
table.Matrix tbody > tr > td.MatrixRowHeader {
padding-right: 10px;
padding-left: 5px;
}
/* Button to clear/reset matrix values for selected rows + for data export*/
li.InputfieldMatrix button.MatrixReset,
li.InputfieldMatrix button.MatrixResetReno,
li.InputfieldMatrix button.MatrixExport,
li.InputfieldMatrix button.MatrixExportReno {
float: right;
margin: 0 0 20px 3px;
padding: 0.3em 0.4em;
font-weight: normal;
}
/*Reset and Export buttons for Reno need different padding*/
li.InputfieldMatrix button.MatrixResetReno > span,
li.InputfieldMatrix button.MatrixExportReno > span{
padding: 0;
}
/*import csv mode, ignore first row/column*/
span.MatrixRadio {
display: inline-block;
margin-right: 2.5em;
}
span.MatrixRadio span {
font-weight: bold;
display: inline-block;
}
label.MatrixRadio {
display: inline-block;
padding-bottom: 1em;
margin: 0 0.125em 0 0.1em;
}
input[type="radio"].MatrixRadio {
margin-top: -1px;
vertical-align: middle;
}
/*Checkbox in last column*/
li.InputfieldMatrix input[type=checkbox].MatrixCheckbox, li.InputfieldMatrix input[type=checkbox].MatrixToggleAll {margin-left: 3px;}
/*custom alert box jQuery UI Dialog*/
div.alert {border-radius: 5px;}
div.alert p {background: white; padding: 10px; margin: 10px; color: #395057;}
div.ui-dialog,
div.ui-dialog .ui-dialog-titlebar {background: #2F4248 !important;}