@asd20/ui 3.2.382 → 3.2.383
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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<label for="asd20-search">Search</label>
|
|
7
7
|
<input
|
|
8
|
-
id="asd20-search"
|
|
8
|
+
:id="`asd20-search${idTag}`"
|
|
9
9
|
:value="value"
|
|
10
10
|
type="search"
|
|
11
11
|
:placeholder="placeholder"
|
|
@@ -28,6 +28,7 @@ export default {
|
|
|
28
28
|
props: {
|
|
29
29
|
value: { type: String, default: '' },
|
|
30
30
|
extra: { type: String, default: '' },
|
|
31
|
+
idTag: { type: String, default: '' },
|
|
31
32
|
large: { type: Boolean, default: false },
|
|
32
33
|
placeholder: { type: String, default: 'Search' },
|
|
33
34
|
},
|
|
@@ -84,7 +85,7 @@ export default {
|
|
|
84
85
|
// font-size: space(0.75);
|
|
85
86
|
font-size: space(0.625);
|
|
86
87
|
line-height: 1;
|
|
87
|
-
height: space(
|
|
88
|
+
height: space(1.5);
|
|
88
89
|
background: white;
|
|
89
90
|
transition: background asd20-speed(1) ease;
|
|
90
91
|
|
|
@@ -172,7 +172,7 @@ export default {
|
|
|
172
172
|
background: rgba(50, 50, 50, 0.5);
|
|
173
173
|
bottom: 0;
|
|
174
174
|
padding: space(0.25);
|
|
175
|
-
font-size:
|
|
175
|
+
font-size: 0.8rem !important;
|
|
176
176
|
width: 100%;
|
|
177
177
|
}
|
|
178
178
|
}
|
|
@@ -217,7 +217,7 @@ export default {
|
|
|
217
217
|
.asd20-image-gallery {
|
|
218
218
|
.image-grid {
|
|
219
219
|
.grid-overlay {
|
|
220
|
-
font-size:
|
|
220
|
+
font-size: 1rem !important;
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
>
|
|
9
9
|
<div class="asd20-site-search__viewport">
|
|
10
10
|
<div class="asd20-site-search__options">
|
|
11
|
-
<asd20-search-field ref="search" v-model="keywords" />
|
|
11
|
+
<asd20-search-field idTag="-sitewide" ref="search" v-model="keywords" />
|
|
12
12
|
<asd20-checkbox
|
|
13
13
|
v-show="hasParentOrg"
|
|
14
14
|
v-model="_includeDistrictSearchResults"
|