@ilo-org/styles 1.13.0 → 1.13.1
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/css/components/button.css +1 -1
- package/css/index.css +2 -2
- package/css/index.css.map +1 -1
- package/css/monorepo.css +2 -2
- package/css/monorepo.css.map +1 -1
- package/package.json +1 -1
- package/scss/components/_button.scss +4 -8
- package/scss/components/navigation/_nav-compact.scss +5 -0
- package/scss/components/navigation/internal/_nav-shared.scss +6 -0
- package/scss/components/navigation/internal/mobile/_nav-mobile.scss +5 -0
package/package.json
CHANGED
|
@@ -125,13 +125,6 @@
|
|
|
125
125
|
color: var(--ilo-button-labels-hover-color);
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
-
&:focus {
|
|
129
|
-
background-color: var(--ilo-color-background-focus);
|
|
130
|
-
border: var(--ilo-border-md) var(--ilo-color-borders-focus) solid;
|
|
131
|
-
color: var(--ilo-button-labels-focus-color);
|
|
132
|
-
outline: none;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
128
|
&:active {
|
|
136
129
|
background-color: var(--ilo-color-background-active);
|
|
137
130
|
border: var(--ilo-border-md) var(--ilo-color-borders-active) solid;
|
|
@@ -141,13 +134,16 @@
|
|
|
141
134
|
}
|
|
142
135
|
|
|
143
136
|
&:focus {
|
|
137
|
+
outline: none;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&:focus-visible {
|
|
144
141
|
background-color: var(--ilo-color-background-focus);
|
|
145
142
|
border: var(--ilo-border-md) var(--ilo-color-borders-focus) solid;
|
|
146
143
|
box-shadow:
|
|
147
144
|
4px 4px 0 1px var(--ilo-color-borders-focus) inset,
|
|
148
145
|
-4px -4px 0 1px var(--ilo-color-borders-focus) inset;
|
|
149
146
|
color: var(--ilo-button-labels-focus-color);
|
|
150
|
-
outline: none;
|
|
151
147
|
@include globaltransition("color, background-color, border-color");
|
|
152
148
|
|
|
153
149
|
&.#{$prefix}--small {
|
|
@@ -175,6 +175,12 @@
|
|
|
175
175
|
display: flex;
|
|
176
176
|
align-items: center;
|
|
177
177
|
padding-inline: spacing(2);
|
|
178
|
+
background: none;
|
|
179
|
+
border: 0;
|
|
180
|
+
cursor: pointer;
|
|
181
|
+
font: inherit;
|
|
182
|
+
color: inherit;
|
|
183
|
+
text-decoration: none;
|
|
178
184
|
|
|
179
185
|
@include breakpoint("lg", true) {
|
|
180
186
|
display: none;
|
|
@@ -29,8 +29,13 @@
|
|
|
29
29
|
display: flex;
|
|
30
30
|
align-items: center;
|
|
31
31
|
justify-content: space-between;
|
|
32
|
+
width: 100%;
|
|
32
33
|
text-decoration: none;
|
|
33
34
|
cursor: pointer;
|
|
35
|
+
background: none;
|
|
36
|
+
border: 0;
|
|
37
|
+
font: inherit;
|
|
38
|
+
color: inherit;
|
|
34
39
|
|
|
35
40
|
&__label {
|
|
36
41
|
@include typography("highlight-medium");
|