@ilo-org/styles 1.3.1 → 1.3.3
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/accordion.css +1 -1
- package/css/components/callout.css +1 -1
- package/css/components/link.css +1 -1
- package/css/components/linklist.css +1 -1
- package/css/components/pagination.css +1 -1
- package/css/components/promocard.css +1 -1
- package/css/components/richtext.css +1 -1
- package/css/components/table.css +1 -1
- package/css/components/tabs.css +1 -1
- package/css/components/tag.css +1 -1
- package/css/global.css.map +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 +4 -6
- package/scss/_mixins.scss +19 -0
- package/scss/components/_accordion.scss +22 -32
- package/scss/components/_blockquote.scss +2 -4
- package/scss/components/_callout.scss +5 -9
- package/scss/components/_linklist.scss +22 -45
- package/scss/components/_pagination.scss +12 -48
- package/scss/components/_promocard.scss +1 -5
- package/scss/components/_richtext.scss +2 -2
- package/scss/components/_tabs.scss +39 -6
- package/scss/components/_tag.scss +4 -10
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
|
|
89
89
|
&.icon__position--right {
|
|
90
90
|
.ilo--icon {
|
|
91
|
-
@include
|
|
91
|
+
@include icon("close", var(--ilo-color-blue-dark));
|
|
92
92
|
background-position: center;
|
|
93
93
|
background-repeat: no-repeat;
|
|
94
94
|
background-size: contain;
|
|
@@ -111,10 +111,7 @@
|
|
|
111
111
|
|
|
112
112
|
&.icon__position--right {
|
|
113
113
|
.ilo--icon {
|
|
114
|
-
@include
|
|
115
|
-
"close",
|
|
116
|
-
map-get($color, "tag", "text", "hover")
|
|
117
|
-
);
|
|
114
|
+
@include icon("close", var(--ilo-color-blue));
|
|
118
115
|
}
|
|
119
116
|
}
|
|
120
117
|
}
|
|
@@ -148,7 +145,7 @@
|
|
|
148
145
|
|
|
149
146
|
&.icon__position--right {
|
|
150
147
|
.ilo--icon {
|
|
151
|
-
@include
|
|
148
|
+
@include icon("close", var(--ilo-color-blue-dark));
|
|
152
149
|
|
|
153
150
|
height: 100%;
|
|
154
151
|
max-height: 28px;
|
|
@@ -169,10 +166,7 @@
|
|
|
169
166
|
|
|
170
167
|
&.icon__position--right {
|
|
171
168
|
.ilo--icon {
|
|
172
|
-
@include
|
|
173
|
-
"close",
|
|
174
|
-
map-get($color, "tag", "text", "hover")
|
|
175
|
-
);
|
|
169
|
+
@include icon("close", var(--ilo-color-blue));
|
|
176
170
|
}
|
|
177
171
|
}
|
|
178
172
|
}
|