Skip to content

Commit 140e7bf

Browse files
committed
Update: Added pointer cursor to Overview chips
1 parent e98f330 commit 140e7bf

1 file changed

Lines changed: 32 additions & 16 deletions

File tree

src/app/pages/circular-heatmap/circular-heatmap.component.css

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.margin30 {
22
margin-bottom: 30px;
33
}
4+
45
.axis path,
56
.axis line {
67
fill: none;
@@ -38,6 +39,7 @@
3839
justify-items: center;
3940
align-content: space-between;
4041
}
42+
4143
#chart {
4244
width: 100%;
4345
max-width: min(100vh - 60px, 100vw - 60px);
@@ -46,6 +48,7 @@
4648
.downloadButtonClass {
4749
margin: 10px 0;
4850
}
51+
4952
.overlay-details {
5053
z-index: 2;
5154
background-color: rgba(0, 0, 0, 0.555);
@@ -56,6 +59,7 @@
5659
width: 60%;
5760
min-height: 100%;
5861
}
62+
5963
.overlay-modal {
6064
/* border: 1px solid black; */
6165
margin: 1em;
@@ -106,40 +110,50 @@
106110
.filter-toggle .hidden {
107111
display: none;
108112
}
113+
109114
.team-list {
110115
width: 100%;
111116
list-style: none;
112117
padding: 0;
113118
margin: 0;
114119
}
120+
115121
.team-list li {
116122
display: grid;
117123
grid-template-columns: minmax(100px, auto) 1fr;
118124
gap: 16px;
119125
align-items: center;
120126
margin-bottom: 8px;
121127
}
128+
122129
.team-label {
123130
white-space: nowrap;
124131
text-align: right;
125132
font-size: smaller;
126133
}
134+
127135
app-progress-slider {
128136
width: 100%;
129137
}
138+
130139
.mat-chip-list {
131140
display: flex;
132141
flex-direction: row;
133142
flex-wrap: wrap;
134-
padding: 1rem;
143+
padding: 1rem;
135144
}
145+
136146
.filter-container {
137147
position: relative;
138148
}
139149

140150
.smaller-italics {
141-
font-size: smaller;
142-
font-style: italic;
151+
font-size: smaller;
152+
font-style: italic;
153+
}
154+
155+
mat-chip {
156+
cursor: pointer;
143157
}
144158

145159
button.filter-toggle {
@@ -175,31 +189,33 @@ button.filter-toggle {
175189

176190
@media only screen and (max-width: 750px) {
177191
.heatmapClass {
178-
grid-template-rows: auto auto 1fr auto;
179-
grid-template-columns: 1fr;
192+
grid-template-rows: auto auto 1fr auto;
193+
grid-template-columns: 1fr;
180194
}
181-
182-
.team-filter, .heatmapChart, .footer-buttons {
183-
grid-column: 1;
195+
196+
.team-filter,
197+
.heatmapChart,
198+
.footer-buttons {
199+
grid-column: 1;
184200
}
185-
201+
186202
.team-filter {
187-
grid-row: 1;
188-
padding: 0.4rem;
203+
grid-row: 1;
204+
padding: 0.4rem;
189205
}
190-
206+
191207
.mat-chip-list {
192-
padding: 0.4rem;
208+
padding: 0.4rem;
193209
}
194210

195211
.heatmapChart {
196-
grid-row: 2;
212+
grid-row: 2;
197213
}
198214

199215
#chart {
200-
max-width: max(60vh, 60vw);
216+
max-width: max(60vh, 60vw);
201217
}
202-
218+
203219
.overlay-details {
204220
width: 100%;
205221
}

0 commit comments

Comments
 (0)