stop14-themesystem-legacy 2.1.2 → 3.0.0
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 +1 -1
- package/scaffolding/drupal/source/sass/20_layout/_section_splash.sass +8 -1
- package/source/sass/a_components/20_layout/splash_content/_splash_content_container.sass +42 -0
- package/source/sass/a_components/30_typography/standardized_text_collection/_anchor.sass +6 -0
- package/source/sass/a_components/40_ui/accessibility/_screen_reader_text.sass +1 -1
- package/source/sass/a_components/40_ui/ui_element_base_v002/13_definitions/_form_elements.sass +11 -10
- package/source/sass/a_components/40_ui/ui_element_base_v002/_form_ui.sass +1 -1
- package/source/sass/a_components/60_site_elements/drupal_better_exposed_filters/_index.sass +5 -0
- package/source/sass/a_components/60_site_elements/drupal_general_support/_index.sass +1 -1
- /package/source/sass/a_components/60_site_elements/{drupal_general_support → drupal_better_exposed_filters}/_component_views_bef_search_field.sass +0 -0
package/package.json
CHANGED
|
@@ -7,9 +7,16 @@
|
|
|
7
7
|
* @seealso 60_site_elements/views_and_blocks/_welcome.sass
|
|
8
8
|
**/
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
// There are two slider options:
|
|
11
|
+
// +splash-content-container which creates a full width slider
|
|
12
|
+
// +splash-content-container-inset which insets the content by standard edge padding
|
|
13
|
+
|
|
14
|
+
+splash-content-container-inset()
|
|
11
15
|
|
|
12
16
|
#splash
|
|
13
17
|
position: relative
|
|
14
18
|
.block
|
|
15
19
|
+splash-drupal-views-support()
|
|
20
|
+
|
|
21
|
+
// This removes any default padding for the slide content container
|
|
22
|
+
--slide-item-content-padding: 0
|
|
@@ -54,6 +54,48 @@
|
|
|
54
54
|
@else
|
|
55
55
|
height: calc(#{$splash_height_desktop} - #{$masthead_height} - #{$admin_bar_tray} - #{$admin_bar_height} - #{$masthead_clearance})
|
|
56
56
|
|
|
57
|
+
=splash-content-container-inset($container-selector: ".block", $splash-section-selector: "#splash", $admin-toolbar-selector: ".has-admin-bar, .toolbar-tray-open")
|
|
58
|
+
|
|
59
|
+
@at-root #{$splash-section-selector} #{$container-selector}
|
|
60
|
+
+standard_edge_padding()
|
|
61
|
+
|
|
62
|
+
width: 100%
|
|
63
|
+
@if $splash_height_mobile == 'auto'
|
|
64
|
+
height: auto
|
|
65
|
+
@else
|
|
66
|
+
height: calc(#{$splash_height_mobile} - #{$masthead_height})
|
|
67
|
+
|
|
68
|
+
+bp($tablet)
|
|
69
|
+
@if $splash_height_tablet == 'auto'
|
|
70
|
+
height: auto
|
|
71
|
+
@else
|
|
72
|
+
height: calc(#{$splash_height_tablet} - #{$masthead_height})
|
|
73
|
+
|
|
74
|
+
+bp($desktop)
|
|
75
|
+
@if $splash_height_desktop == 'auto'
|
|
76
|
+
height: auto
|
|
77
|
+
@else
|
|
78
|
+
height: calc(#{$splash_height_desktop} - #{$masthead_height})
|
|
79
|
+
min-height: $min_splash_height
|
|
80
|
+
|
|
81
|
+
@at-root #{$admin-toolbar-selector} #{$splash-section-selector} #{$container-selector}
|
|
82
|
+
@if $splash_height_mobile == 'auto'
|
|
83
|
+
height: auto
|
|
84
|
+
@else
|
|
85
|
+
height: calc(#{$splash_height_mobile} - #{$masthead_height} - #{$admin_bar_height})
|
|
86
|
+
|
|
87
|
+
+bp($tablet)
|
|
88
|
+
@if $splash_height_tablet == 'auto'
|
|
89
|
+
height: auto
|
|
90
|
+
@else
|
|
91
|
+
height: calc(#{$splash_height_tablet} - #{$masthead_height} - #{$admin_bar_height})
|
|
92
|
+
|
|
93
|
+
+bp($desktop)
|
|
94
|
+
@if $splash_height_desktop == 'auto'
|
|
95
|
+
height: auto
|
|
96
|
+
@else
|
|
97
|
+
height: calc(#{$splash_height_desktop} - #{$masthead_height} - #{$admin_bar_tray} - #{$admin_bar_height})
|
|
98
|
+
|
|
57
99
|
|
|
58
100
|
/**
|
|
59
101
|
* Forces standard Views interior containers to 100% height. Apply to views block element.
|
package/source/sass/a_components/40_ui/ui_element_base_v002/13_definitions/_form_elements.sass
CHANGED
|
@@ -35,19 +35,11 @@
|
|
|
35
35
|
-webkit-appearance: none
|
|
36
36
|
-moz-appearance: none
|
|
37
37
|
appearance: none
|
|
38
|
-
|
|
39
|
-
font-weight: $normal
|
|
40
|
-
padding: $btn_padding
|
|
41
|
-
height: $btn_height
|
|
42
|
-
min-width: $btn_minwidth
|
|
43
|
-
border: $btn_border_width solid $btn_border_color
|
|
44
|
-
border-radius: $ui_border_radius
|
|
38
|
+
|
|
45
39
|
text-align: center
|
|
46
40
|
text-transform: uppercase
|
|
47
41
|
width: fit-content
|
|
48
42
|
white-space: nowrap
|
|
49
|
-
background-color: $btn_bg_color
|
|
50
|
-
color: $btn_color
|
|
51
43
|
|
|
52
44
|
%button
|
|
53
45
|
@extend %button-base
|
|
@@ -56,6 +48,15 @@
|
|
|
56
48
|
align-items: center
|
|
57
49
|
justify-content: center
|
|
58
50
|
cursor: pointer
|
|
51
|
+
font-size: $btn_fontsize
|
|
52
|
+
font-weight: $normal
|
|
53
|
+
padding: $btn_padding
|
|
54
|
+
height: $btn_height
|
|
55
|
+
min-width: $btn_minwidth
|
|
56
|
+
border: $btn_border_width solid $btn_border_color
|
|
57
|
+
border-radius: $ui_border_radius
|
|
58
|
+
background-color: $btn_bg_color
|
|
59
|
+
color: $btn_color
|
|
59
60
|
|
|
60
61
|
&:hover
|
|
61
62
|
color: $btn_hover_color
|
|
@@ -102,6 +103,7 @@
|
|
|
102
103
|
color: $clr4
|
|
103
104
|
|
|
104
105
|
%button-text
|
|
106
|
+
@extend %button-base
|
|
105
107
|
background-color: $black
|
|
106
108
|
text-decoration: underline
|
|
107
109
|
display: inline-flex
|
|
@@ -124,7 +126,6 @@
|
|
|
124
126
|
@extend %button
|
|
125
127
|
color: $white
|
|
126
128
|
|
|
127
|
-
|
|
128
129
|
%button-outline
|
|
129
130
|
@extend %button
|
|
130
131
|
background-color: transparent
|
|
@@ -7,6 +7,6 @@
|
|
|
7
7
|
@import _component_drupal_local_tasks
|
|
8
8
|
@import _component_drupal_one_line_form
|
|
9
9
|
@import _component_views
|
|
10
|
-
@import
|
|
10
|
+
@import ../drupal_better_exposed_filters/component_views_bef_search_field
|
|
11
11
|
@import _mirador_compatibility
|
|
12
12
|
@import _views_attachment_tabs
|