@internetarchive/ia-topnav 1.1.39 → 1.2.2-alpha1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@internetarchive/ia-topnav",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.2-alpha1",
|
|
4
4
|
"description": "Top nav for Internet Archive",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"main": "index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"test": "ulimit -v unlimited; web-test-runner 'test/**/*.test.js' --node-resolve --coverage --puppeteer"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@internetarchive/ia-wayback-search": "^0.2.
|
|
24
|
+
"@internetarchive/ia-wayback-search": "^0.2.4"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@open-wc/demoing-storybook": "^2.4.7",
|
package/src/styles/ia-topnav.js
CHANGED
|
@@ -69,7 +69,7 @@ export default css`
|
|
|
69
69
|
right: 0;
|
|
70
70
|
bottom: 0;
|
|
71
71
|
left: 0;
|
|
72
|
-
z-index:
|
|
72
|
+
z-index: 0;
|
|
73
73
|
}
|
|
74
74
|
#close-layer.visible {
|
|
75
75
|
display: block;
|
|
@@ -77,14 +77,12 @@ export default css`
|
|
|
77
77
|
|
|
78
78
|
.topnav {
|
|
79
79
|
position: relative;
|
|
80
|
+
z-index: 3;
|
|
80
81
|
}
|
|
81
82
|
|
|
82
83
|
@media (max-width: 889px) {
|
|
83
84
|
desktop-subnav {
|
|
84
85
|
display: none;
|
|
85
86
|
}
|
|
86
|
-
.topnav {
|
|
87
|
-
z-index: 4;
|
|
88
|
-
}
|
|
89
87
|
}
|
|
90
88
|
`;
|
package/src/styles/nav-search.js
CHANGED
|
@@ -201,6 +201,7 @@ export default css`
|
|
|
201
201
|
|
|
202
202
|
nav {
|
|
203
203
|
display: block;
|
|
204
|
+
z-index: 3;
|
|
204
205
|
height: 5rem;
|
|
205
206
|
padding-right: 1.5rem;
|
|
206
207
|
}
|
|
@@ -273,8 +274,6 @@ export default css`
|
|
|
273
274
|
nav-search {
|
|
274
275
|
float: right;
|
|
275
276
|
margin-left: 1rem;
|
|
276
|
-
z-index: 4;
|
|
277
|
-
position: inherit;
|
|
278
277
|
}
|
|
279
278
|
|
|
280
279
|
login-button {
|