forked from PhilippeMarcMeyer/FieldsLinker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfieldsLinker.css
More file actions
44 lines (38 loc) · 905 Bytes
/
Copy pathfieldsLinker.css
File metadata and controls
44 lines (38 loc) · 905 Bytes
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
.fieldsLinker div {
font-weight: bold;
}
.fieldsLinker ul {
list-style: none;
margin-left: 0px;
padding-left: 0px;
font-weight: normal;
}
.fieldsLinker li {
border: solid 1px grey;
padding: 5px 2px 5px 8px;
margin-top: 7px;
margin-bottom: 8px;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
cursor: pointer;
background-color: #fff;
background: linear-gradient(#ffffff, #e9e9e9);
color: black;
border-radius: 0px;
text-overflow: ellipsis;
overflow: hidden;
}
.fieldsLinker li[data-mandatory='true'] {
background-color: #D7504C;
background: linear-gradient(#D7504C, #C12F2B);
color: white;
}
.fieldsLinker li.inactive {
opacity: 0.5;
}
.fieldsLinker li.linkOver {
border: solid 2px transparent; /*plus 1px*/
padding: 4px 1px 4px 7px; /* minus 1px*/
}