generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathelevationlayer.css
80 lines (71 loc) · 1.6 KB
/
elevationlayer.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#elevationlayer-tools.control-tools {
list-style: none;
padding: 0;
margin: 0;
}
#elevationlayer-tools.control-tools > li.control-tool.disabled:hover {
box-shadow: none;
border: 1px solid var(--color-border-dark);
cursor: default;
}
#elevationlayer-tools .control-btn {
width: 36px;
height: 36px;
box-sizing: content-box;
font-size: 24px;
line-height: 36px;
margin: 0 0 8px;
color: #BBB;
text-align: center;
border: 0px;
background: transparent;
border-radius: 5px;
cursor: pointer;
padding: 0;
}
#elevationlayer-tools.control-tools > li.control-tool.disabled:hover {
box-shadow: 0 0 10px var(--color-shadow-dark);
}
/*
#elevationlayer-tools .control-btn:hover {
color: #FFF;
box-shadow: 0 0 10px #ff6400;
}*/
#elevationlayer-tools .control-btn:disabled {
color: var(--color-text-dark-secondary);
box-shadow: none;
cursor: default;
}
#elevationlayer-tools table {
margin: 0;
border: none;
background: none;
}
#elevationlayer-tools td {
padding: 0;
vertical-align: top;
}
#elevationlayer-tools td:nth-child(n+1) {
padding-left: 8px;
}
#elevationlayer-tools #el-curr-elevation {
color: #DCDCDC;
}
#elevationlayer-tools #el-elevation-number {
cursor: default;
position: center;
width: 90%;
}
#elevationlayer-tools #el-elevation-number:hover {
box-shadow: none;
border: 1px solid var(--color-border-dark);
box-shadow: 0 0 10px var(--color-shadow-dark);
}
/*
#elevationlayer-tools #el-elevation-number i {
position: absolute;
top: -5px;
left: -5px;
font-size: 14px;
}
*/