-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path_timesStopsDatasheet.scss
100 lines (83 loc) · 1.83 KB
/
_timesStopsDatasheet.scss
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
.time-stops-datasheet {
padding-bottom: 16px;
border-radius: 10px;
box-shadow:
0px 1px 0px rgba(255, 255, 255, 1) inset,
0px 4px 7px -3px rgba(255, 171, 88, 0.17),
0px 2px 4px rgba(0, 0, 0, 0.22);
background-color: var(--ambiantB15);
--dsg-cell-background-color: var(--white100);
--dsg-cell-disabled-background-color: var(--white100);
--dsg-header-text-color: var(--grey50);
--dsg-header-active-text-color: var(--black100);
.invalidCell {
color: red !important;
}
.padded-header > * {
padding-inline: 8px 16px;
}
.secondary-code-column {
color: var(--grey50);
}
.self-center {
align-self: center;
}
.small-unit-container {
display: inline-block;
font-size: 0.5rem;
line-height: 8px;
text-align: left;
vertical-align: -10%;
}
.repeatedValue {
color: var(--grey30);
}
.warning-schedule {
background: var(--warning30);
}
.warning-margin {
background: rgba(var(--warning30-rgb), 0.5);
}
.dsg-cell {
font-size: 0.875rem;
border-top: none !important;
border-bottom: none !important;
}
.dsg-cell.dsg-cell-header {
font-size: 0.75rem;
}
.dsg-cell-gutter {
--dsg-header-text-color: var(--grey30);
}
.dsg-cell-sticky-right {
button {
margin: auto;
}
}
.dsg-container {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border: none;
color: var(--grey80);
}
.dsg-corner-indicator {
visibility: hidden;
}
.dsg-input {
font-size: 0.875rem;
}
.dsg-row {
&.activeRow {
font-weight: 600;
color: var(--black100);
.dsg-cell-gutter,
.secondary-code-column {
font-weight: normal;
}
}
&.oddRow {
--dsg-cell-background-color: var(--ambiantB5);
--dsg-cell-disabled-background-color: var(--ambiantB5);
}
}
}