@gemka/core 0.5.1 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/chrome.css +4 -1
- package/package.json +1 -1
- package/tokens.css +8 -1
package/chrome.css
CHANGED
|
@@ -230,6 +230,8 @@
|
|
|
230
230
|
margin-bottom: 0.5rem;
|
|
231
231
|
padding-top: 6px;
|
|
232
232
|
}
|
|
233
|
+
/* Opt-in: single row of four At a glance cards (collapses on mobile, below). */
|
|
234
|
+
.theme-vintage .dd-stats--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
|
|
233
235
|
.theme-vintage .dd-stat-card {
|
|
234
236
|
min-width: 0;
|
|
235
237
|
background: var(--gk-surface-2);
|
|
@@ -563,7 +565,8 @@
|
|
|
563
565
|
.theme-vintage .dd-tod-section { order: 3; }
|
|
564
566
|
.theme-vintage .dd-overlay-cell--hour { order: 4; }
|
|
565
567
|
.theme-vintage .dd-activity-section { order: 5; }
|
|
566
|
-
.theme-vintage .dd-stats
|
|
568
|
+
.theme-vintage .dd-stats,
|
|
569
|
+
.theme-vintage .dd-stats--four { grid-template-columns: repeat(2, 1fr); }
|
|
567
570
|
.theme-vintage .dd-tod-grid { grid-template-columns: 1fr; }
|
|
568
571
|
.theme-vintage .dd-hour-grid { overflow: visible; --dd-bar-row-h: 12px; }
|
|
569
572
|
}
|
package/package.json
CHANGED
package/tokens.css
CHANGED
|
@@ -35,7 +35,14 @@
|
|
|
35
35
|
/* Chrome primitives: non-color dimensions consumed by chrome.css */
|
|
36
36
|
--gk-nav-rule: 1px; /* nav / dd-nav oxblood underline (base 2px folds to the vintage 1px) */
|
|
37
37
|
--gk-avatar: 30px; /* auth-avatar diameter */
|
|
38
|
-
--gk-clock-half:
|
|
38
|
+
--gk-clock-half: 7rem; /* nav clock date/time half width — must hold the widest
|
|
39
|
+
zero-padded 10-char date (pt/de dd?dd?yyyy ~108px at the
|
|
40
|
+
14px/0.18em nav clock). At 5.5rem the date text overflowed
|
|
41
|
+
the fixed box rightward into the middle, eating the flex
|
|
42
|
+
gap (pt collided at ~0px). Sized so the date fits inside
|
|
43
|
+
the box, text-align:right seats it at the inner edge, and
|
|
44
|
+
chrome.css's gap:1.25rem reads as a real ~20px gap for
|
|
45
|
+
every locale; en (short 7/7/2026 date) is unchanged. */
|
|
39
46
|
--gk-heatmap-cell: 14px; /* deep-dive heatmap cell + day-label row height */
|
|
40
47
|
--gk-stat-card-pad: 0.5rem 0.65rem; /* deep-dive stat / peak-hour card padding */
|
|
41
48
|
}
|