ideasbugs 0.8.0 → 0.8.1
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.
- checksums.yaml +4 -4
- data/lib/ideasbugs/dashboard.css +9 -7
- data/lib/ideasbugs/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 31f280c65befb3e365927e554002f568f82b363c203385e5cf4fc14300f2a8f9
|
|
4
|
+
data.tar.gz: ca2dae3df55aa97f5d623efbc10299c032996670fa58ece0d5dba512e2877e9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b24be9267ce67ac8dcf0e481dcca9aaf44bc3a012a8831b5d9bb0cd49478bb57c3e5398ea2acd0d3b68fae23b3f006c2da9553817d7bde5cb72cabb7e5d053e8
|
|
7
|
+
data.tar.gz: 9d44fb857d2c66e582a7efc6ea180baec1f04e3b0a29b12339c8ac08b8180e76c7a4e89febda22b7064808ac155d7b812492ef775c4f8be2acbfbaf857f16b8e
|
data/lib/ideasbugs/dashboard.css
CHANGED
|
@@ -62,14 +62,22 @@
|
|
|
62
62
|
|
|
63
63
|
/* Page frame — the gem's own layout only. */
|
|
64
64
|
.ib-page { margin: 0; background: var(--ib-bg); color: var(--ib-text); font: 15px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif; }
|
|
65
|
+
/* Desktop triage: list on the left, selected feedback on the right. */
|
|
66
|
+
.ib-index, .ib-index .container { height: 100vh; height: 100dvh; }
|
|
65
67
|
.ib-index { overflow: hidden; }
|
|
66
68
|
.ib-index .container { max-width: 1280px; display: flex; flex-direction: column; padding-bottom: 16px; }
|
|
67
|
-
.ib-index .container
|
|
69
|
+
.ib-index .container h1 { flex: 0 0 auto; margin-bottom: 14px; }
|
|
70
|
+
/* Standalone show pages keep normal page scrolling. */
|
|
71
|
+
.ib-show { min-height: 100vh; overflow: auto; }
|
|
68
72
|
.ib-show .feedback-panel { gap: 0; }
|
|
69
73
|
.ib-show .detail-scroll { overflow: visible; }
|
|
70
74
|
|
|
71
75
|
/* Dashboard components — any layout. */
|
|
72
76
|
.ib-dashboard {
|
|
77
|
+
/* A scoping device, not a layout one: without this the wrapper would
|
|
78
|
+
become the flex/grid child that the content should be. */
|
|
79
|
+
display: contents;
|
|
80
|
+
|
|
73
81
|
& * { box-sizing: border-box; }
|
|
74
82
|
& a { color: var(--ib-accent); text-decoration: none; }
|
|
75
83
|
& a:hover { text-decoration: underline; }
|
|
@@ -122,10 +130,6 @@
|
|
|
122
130
|
& .feedback-panel { min-width: 0; display: flex; flex-direction: column; }
|
|
123
131
|
& .feedback-panel .actions { flex: 0 0 auto; }
|
|
124
132
|
& .feedback-panel .detail-scroll > .actions { margin: 0; }
|
|
125
|
-
& /* Desktop triage: list on the left,
|
|
126
|
-
& selected feedback on the right. */
|
|
127
|
-
.ib-index,
|
|
128
|
-
& .ib-index .container { height: 100vh; height: 100dvh; }
|
|
129
133
|
& .triage-shell { flex: 1 1 auto; min-height: 0; display: grid; grid-template-columns: minmax(320px, 400px) 1fr; gap: 16px; }
|
|
130
134
|
& .triage-sidebar { min-width: 0; min-height: 0; display: flex; flex-direction: column; background: var(--ib-surface); border: 1px solid var(--ib-border); border-radius: 8px; overflow: hidden; }
|
|
131
135
|
& .triage-sidebar .tabs { flex: 0 0 auto; margin: 12px 12px 0; padding: 0; background: transparent; border: 0; border-radius: 0; gap: 6px; flex-wrap: nowrap; }
|
|
@@ -159,6 +163,4 @@
|
|
|
159
163
|
& .empty-state h2 { margin: 0 0 6px; font-size: 18px; }
|
|
160
164
|
& .empty-state p { margin: 0; }
|
|
161
165
|
& .mobile-back { display: none; }
|
|
162
|
-
& /* Standalone show pages keep normal page scrolling. */
|
|
163
|
-
.ib-show { min-height: 100vh; overflow: auto; }
|
|
164
166
|
}
|
data/lib/ideasbugs/version.rb
CHANGED