-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCustomModelBox.module.css
More file actions
103 lines (88 loc) · 1.73 KB
/
CustomModelBox.module.css
File metadata and controls
103 lines (88 loc) · 1.73 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
.customModelBox {
margin: 0.6em 0;
padding: 0 0;
border-top: lightgray solid 1px;
height: 18rem;
}
.customModelOptionTable {
display: grid;
font-size: 14px;
grid-template-columns: 15% auto;
grid-template-rows: 1.3rem;
align-content: center;
align-items: center;
margin: 1.5rem 0.5rem 0.5rem 0;
}
.customModelOptionTable svg {
scale: 0.7;
}
#element::-webkit-scrollbar {
display: none;
}
.customModelBoxBottomBar {
display: flex;
border-bottom: lightgray solid 1px;
}
.helpLink {
text-decoration: none;
flex-grow: 1;
}
.examples,
.helpLink,
.applyButton button {
font-size: 14px;
}
.examples {
border: none;
border-top: #ececec solid 1px;
border-right: #ececec solid 1px;
padding-left: 1em;
margin-left: 0;
background-color: white;
color: rgba(0, 60, 136, 0.7);
}
.examples option {
background-color: white;
color: rgba(0, 60, 136, 0.7);
}
/* show disabled button while route calculation */
.applyButtonProgress button,
.applyButtonInvalid button {
cursor: default !important;
color: lightgray !important;
}
.infiniteProgressBar {
animation: progress 4s infinite normal;
height: 2px;
margin-top: -2px; /* when visible it should not occupy space */
background-color: rgb(65, 121, 0);
}
@keyframes progress {
0% {
width: 0;
margin-left: 0;
}
50% {
width: 100%;
margin-left: 0;
}
100% {
width: 0;
margin-left: 100%;
}
}
.helpLink:hover {
color: black;
}
.helpLink,
.examples {
cursor: pointer;
color: #5b616a;
}
.applyButton button {
background-color: rgb(124, 179, 66, 0.1);
}
.applyButton button,
.helpLink {
padding: 0.8em 1.7em;
}