forked from civicrm/civicrm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexportui.css
56 lines (56 loc) · 1.27 KB
/
exportui.css
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
/* "fade-out" effect */
div.crm-export-field-selector-outer {
position: relative;
overflow-x: hidden;
}
div.crm-export-field-selector-outer:after {
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 20%;
content: ' ';
background-image: linear-gradient(to right, transparent, #efefe5);
}
table.crm-export-field-selector tbody tr {
background-color: #FAFAFA;
}
table.crm-export-field-selector tbody tr:nth-child(odd) {
background-color: #EFEFEF;
}
table.crm-export-field-selector tfoot tr {
background-color: white;
border-top: 2px solid #CFCEC3;
}
table.crm-export-field-selector tfoot tr td > span {
margin-left: 18px;
}
.crm-export-field-selector tbody td {
cursor: move;
width: 18%
}
.crm-export-field-selector tbody td:first-child {
width: 28%;
min-width: 230px;
}
.crm-export-field-selector tbody td:first-child > div + div {
margin-left: 17px;
}
.crm-export-field-selector .crm-export-add-field {
width: 16em;
}
.crm-export-ui-save-mapping-dialog .crm-form-block > div {
padding: 5px;
}
.crm-export-ui-save-mapping-dialog .ui-dialog-buttonpane {
position: absolute;
bottom: 20px;
height: 20px;
width: calc(100% - 3em);
}
.crm-export-row-handle {
opacity: .5;
}
.crm-export-field-selector tr:hover .crm-export-row-handle {
opacity: 1;
}