@triptease/tt-navbar 0.0.26 → 0.0.27
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/dist/src/styles.js +8 -2
- package/dist/src/styles.js.map +1 -1
- package/dist/web/Routes.js +1 -1
- package/dist/web/TtNavbar.js +9 -3
- package/dist/web/TtNavbar.js.map +2 -2
- package/dist/web/index.js +9 -3
- package/dist/web/index.js.map +2 -2
- package/dist/web/styles.js +9 -3
- package/dist/web/styles.js.map +2 -2
- package/dist/web/triptease-logo.js +1 -1
- package/dist/web/tt-navbar.js +9 -3
- package/dist/web/tt-navbar.js.map +2 -2
- package/dist/web/urlMappings.js +1 -1
- package/package.json +1 -1
- package/src/styles.ts +8 -2
package/dist/web/urlMappings.js
CHANGED
package/package.json
CHANGED
package/src/styles.ts
CHANGED
|
@@ -195,6 +195,13 @@ export const styles = css`
|
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
|
|
198
|
+
.sidebar-closed details:has(.current-page) > summary {
|
|
199
|
+
--nav-item-color: var(--color-primary-400);
|
|
200
|
+
border-radius: var(--border-radius-100);
|
|
201
|
+
background-color: var(--color-primary-100);
|
|
202
|
+
color: var(--nav-item-color);
|
|
203
|
+
}
|
|
204
|
+
|
|
198
205
|
.sub-nav-item {
|
|
199
206
|
width: 100%;
|
|
200
207
|
display: flex;
|
|
@@ -226,8 +233,7 @@ export const styles = css`
|
|
|
226
233
|
}
|
|
227
234
|
}
|
|
228
235
|
|
|
229
|
-
.current-page
|
|
230
|
-
.sidebar-closed details:has(.current-page) > summary {
|
|
236
|
+
.current-page {
|
|
231
237
|
--nav-item-color: var(--color-primary-400);
|
|
232
238
|
border-radius: var(--border-radius-100);
|
|
233
239
|
background-color: var(--color-primary-100);
|