@lessonkit/themes 1.7.1 → 1.7.2
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/base.css +35 -0
- package/package.json +1 -1
package/base.css
CHANGED
|
@@ -1008,6 +1008,12 @@
|
|
|
1008
1008
|
background: color-mix(in srgb, var(--lk-color-panel) 94%, transparent);
|
|
1009
1009
|
backdrop-filter: blur(4px);
|
|
1010
1010
|
border-top: 1px solid var(--lk-color-border);
|
|
1011
|
+
/* Let bottom-row hotspot targets receive taps through the toolbar chrome. */
|
|
1012
|
+
pointer-events: none;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.lk-find-hotspot-toolbar > * {
|
|
1016
|
+
pointer-events: auto;
|
|
1011
1017
|
}
|
|
1012
1018
|
|
|
1013
1019
|
.lk-find-hotspot-toolbar button[data-testid="check-hotspot"] {
|
|
@@ -1132,3 +1138,32 @@
|
|
|
1132
1138
|
font: inherit;
|
|
1133
1139
|
font-weight: var(--lk-font-weight-strong);
|
|
1134
1140
|
}
|
|
1141
|
+
|
|
1142
|
+
.lk-compound-nav {
|
|
1143
|
+
display: flex;
|
|
1144
|
+
flex-wrap: wrap;
|
|
1145
|
+
gap: var(--lk-touch-spacing, 0.5rem);
|
|
1146
|
+
margin-top: var(--lk-space-md, 1rem);
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.lk-accordion-trigger {
|
|
1150
|
+
display: flex;
|
|
1151
|
+
align-items: center;
|
|
1152
|
+
width: 100%;
|
|
1153
|
+
min-height: var(--lk-touch-target-min, 2.75rem);
|
|
1154
|
+
padding: var(--lk-space-sm, 0.5rem) var(--lk-space-md, 1rem);
|
|
1155
|
+
text-align: left;
|
|
1156
|
+
touch-action: manipulation;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.lk-image-sequence-thumb {
|
|
1160
|
+
min-width: var(--lk-touch-target-min, 2.75rem);
|
|
1161
|
+
min-height: var(--lk-touch-target-min, 2.75rem);
|
|
1162
|
+
touch-action: manipulation;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.lk-flip-card,
|
|
1166
|
+
.lk-memory-card {
|
|
1167
|
+
min-height: var(--lk-touch-target-min, 2.75rem);
|
|
1168
|
+
touch-action: manipulation;
|
|
1169
|
+
}
|