barbican-reset 1.7.3 → 1.7.6
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/helpers/mixins/_br-footer.scss +5 -2
- package/helpers/mixins/_hide.scss +27 -0
- package/helpers/mixins/index.scss +1 -0
- package/helpers/mixins/input/_dropdown.scss +17 -3
- package/helpers/mixins/input/_text.scss +1 -0
- package/helpers/variables/_layout.scss +3 -1
- package/index.js +3 -4
- package/package.json +1 -1
- package/scss/_custom-select.scss +1 -1
- package/scss/index.scss +1 -0
- package/components/footer_logos.vue +0 -31
|
@@ -2,10 +2,13 @@
|
|
|
2
2
|
@mixin br-footer-upper {
|
|
3
3
|
padding-top: 3.75rem;
|
|
4
4
|
display: grid;
|
|
5
|
-
gap: 1rem;
|
|
5
|
+
row-gap: 1rem;
|
|
6
6
|
|
|
7
7
|
@include media-breakpoint-up(md) {
|
|
8
|
-
|
|
8
|
+
justify-content: flex-start;
|
|
9
|
+
align-items: flex-start;
|
|
10
|
+
grid-auto-flow: column;
|
|
11
|
+
column-gap: 3rem;
|
|
9
12
|
}
|
|
10
13
|
|
|
11
14
|
&:not(.splash) {
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
@mixin hide-visually($state:"hide") {
|
|
3
|
+
@if $state == "hide" {
|
|
4
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
5
|
+
clip-path: inset(100%);
|
|
6
|
+
position: absolute;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
height: 1px;
|
|
9
|
+
padding: 0;
|
|
10
|
+
width: 1px;
|
|
11
|
+
border: 0;
|
|
12
|
+
}
|
|
13
|
+
@if $state == "unhide" {
|
|
14
|
+
overflow: visible;
|
|
15
|
+
position: static;
|
|
16
|
+
clip-path: none;
|
|
17
|
+
height: auto;
|
|
18
|
+
width: auto;
|
|
19
|
+
clip: auto;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@mixin hide-text {
|
|
24
|
+
white-space: nowrap;
|
|
25
|
+
text-indent: 101%;
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
}
|
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
|
|
2
|
-
@mixin
|
|
2
|
+
@mixin custom-select {
|
|
3
|
+
padding: 0.8125rem 2.5rem 0.8125rem 0.8125rem;
|
|
4
|
+
background-position: right 0.75rem center;
|
|
5
|
+
background-image: url($select-arrow);
|
|
6
|
+
border: 1px solid $c-grey-concrete;
|
|
3
7
|
background-color: $c-grey-alpine;
|
|
4
8
|
border-radius: $border-radius-lg;
|
|
5
|
-
|
|
6
|
-
|
|
9
|
+
background-size: 1rem 0.75rem;
|
|
10
|
+
background-repeat: no-repeat;
|
|
11
|
+
line-height: 1.375rem;
|
|
7
12
|
color: $c-grey-night;
|
|
13
|
+
font-size: inherit;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
transition: none;
|
|
16
|
+
appearance: none;
|
|
17
|
+
display: block;
|
|
8
18
|
width: 100%;
|
|
19
|
+
|
|
20
|
+
@include focus {
|
|
21
|
+
@include input-focus-defaults;
|
|
22
|
+
}
|
|
9
23
|
}
|
|
@@ -20,4 +20,6 @@ $gap-account: 2rem;
|
|
|
20
20
|
$gap-power: 1.25rem;
|
|
21
21
|
$height-dashboard-banner: 25rem;
|
|
22
22
|
$width-power-related: 66rem;
|
|
23
|
-
$gap-accordion: 2rem;
|
|
23
|
+
$gap-accordion: 2rem;
|
|
24
|
+
|
|
25
|
+
$select-arrow: "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e";
|
package/index.js
CHANGED
|
@@ -6,8 +6,6 @@ import RelatedRow from './components/related_row'
|
|
|
6
6
|
import TypeText from './components/type_text'
|
|
7
7
|
import Placeholder from './components/placeholder'
|
|
8
8
|
import CardDisplay from './components/card_display'
|
|
9
|
-
import FooterLogos from './components/footer_logos'
|
|
10
|
-
import FooterLower from './components/footer_lower'
|
|
11
9
|
import FluidIframe from './components/fluid_iframe'
|
|
12
10
|
import HelpRow from './components/help_row'
|
|
13
11
|
import VideoContent from './components/video_content'
|
|
@@ -25,7 +23,9 @@ import BrFormRow from './components/br_form_row'
|
|
|
25
23
|
import BrFormUpdate from './components/br_form_update'
|
|
26
24
|
import BrLoader from './components/br_loader'
|
|
27
25
|
import BrWrap from './components/br_wrap'
|
|
26
|
+
|
|
28
27
|
import BrFooterUpper from './components/br_footer/upper'
|
|
28
|
+
import BrFooterLower from './components/br_footer/lower'
|
|
29
29
|
|
|
30
30
|
export {
|
|
31
31
|
BrLoader,
|
|
@@ -41,9 +41,8 @@ export {
|
|
|
41
41
|
BrFormUpdate,
|
|
42
42
|
BrFormRow,
|
|
43
43
|
EventSummary,
|
|
44
|
+
BrFooterLower,
|
|
44
45
|
BrFooterUpper,
|
|
45
|
-
FooterLogos,
|
|
46
|
-
FooterLower,
|
|
47
46
|
FluidIframe,
|
|
48
47
|
HelpRow,
|
|
49
48
|
CardDisplay,
|
package/package.json
CHANGED
package/scss/_custom-select.scss
CHANGED
package/scss/index.scss
CHANGED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div :class="$style.logos">
|
|
3
|
-
<slot />
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script>
|
|
8
|
-
// dont think we need this any longer
|
|
9
|
-
export default {
|
|
10
|
-
name: 'FooterLogos'
|
|
11
|
-
}
|
|
12
|
-
</script>
|
|
13
|
-
|
|
14
|
-
<style lang="scss" module>
|
|
15
|
-
|
|
16
|
-
.logos {
|
|
17
|
-
margin: -1rem;
|
|
18
|
-
|
|
19
|
-
> * {
|
|
20
|
-
margin: 1rem;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
> svg {
|
|
24
|
-
display: inline-block;
|
|
25
|
-
height: 3rem;
|
|
26
|
-
fill: $white;
|
|
27
|
-
width: auto;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
</style>
|