Przeglądaj źródła

Add styles for team analysis, performance tables, and highlight patterns

- Introduced grid layout for rankings display.
- Added styles for ranking sections, team performance, working patterns, impact analysis, and collaboration tables.
- Implemented highlighting for high performers and concerning patterns with hover effects.
lechibang-1512 2 miesięcy temu
rodzic
commit
02409887bb
2 zmienionych plików z 1251 dodań i 8 usunięć
  1. 1133
    8
      gitstats
  2. 118
    0
      gitstats.css

+ 1133
- 8
gitstats
Plik diff jest za duży
Wyświetl plik


+ 118
- 0
gitstats.css Wyświetl plik

@@ -169,3 +169,121 @@ h2 a {
169 169
 	text-align: left;
170 170
 	font-weight: bold;
171 171
 }
172
+
173
+/* Team Analysis specific styles */
174
+.rankings {
175
+	display: grid;
176
+	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
177
+	gap: 1em;
178
+	margin: 1em 0;
179
+}
180
+
181
+.ranking-section {
182
+	border: 1px solid #ccc;
183
+	padding: 1em;
184
+	background-color: #f9f9f9;
185
+}
186
+
187
+.ranking-section h3 {
188
+	margin-top: 0;
189
+	color: #564;
190
+	border-bottom: 1px solid #564;
191
+	padding-bottom: 0.5em;
192
+}
193
+
194
+.ranking-section ol {
195
+	margin: 0;
196
+	padding-left: 1.5em;
197
+}
198
+
199
+.ranking-section li {
200
+	margin: 0.5em 0;
201
+}
202
+
203
+/* Team performance table */
204
+.team-performance th {
205
+	background-color: #564;
206
+	color: white;
207
+	text-align: center;
208
+}
209
+
210
+.team-performance td {
211
+	text-align: center;
212
+}
213
+
214
+.team-performance td:first-child {
215
+	text-align: left;
216
+	font-weight: bold;
217
+}
218
+
219
+.team-performance td:last-child {
220
+	text-align: left;
221
+	font-size: 85%;
222
+}
223
+
224
+/* Working patterns table */
225
+.working-patterns th {
226
+	background-color: #446;
227
+	color: white;
228
+	text-align: center;
229
+	font-size: 85%;
230
+}
231
+
232
+.working-patterns td {
233
+	text-align: center;
234
+}
235
+
236
+.working-patterns td:first-child {
237
+	text-align: left;
238
+	font-weight: bold;
239
+}
240
+
241
+/* Impact analysis table */
242
+.impact-analysis th {
243
+	background-color: #644;
244
+	color: white;
245
+	text-align: center;
246
+}
247
+
248
+.impact-analysis td {
249
+	text-align: center;
250
+}
251
+
252
+.impact-analysis td:first-child,
253
+.impact-analysis td:last-child {
254
+	text-align: left;
255
+}
256
+
257
+/* Collaboration table */
258
+.collaboration th {
259
+	background-color: #464;
260
+	color: white;
261
+	text-align: center;
262
+}
263
+
264
+.collaboration td {
265
+	text-align: center;
266
+}
267
+
268
+.collaboration td:first-child,
269
+.collaboration td:last-child {
270
+	text-align: left;
271
+}
272
+
273
+/* Highlight high performers */
274
+tr.high-performer {
275
+	background-color: #e6ffe6 !important;
276
+}
277
+
278
+tr.high-performer:hover {
279
+	background-color: #ccffcc !important;
280
+}
281
+
282
+/* Highlight concerning patterns */
283
+tr.concern {
284
+	background-color: #ffe6e6 !important;
285
+}
286
+
287
+tr.concern:hover {
288
+	background-color: #ffcccc !important;
289
+}