@ilo-org/styles 1.14.3 → 1.15.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/components/formcontrol.css +1 -1
- package/css/components/input.css +1 -1
- package/css/components/list.css +1 -1
- package/css/components/profile.css +1 -1
- package/css/components/richtext.css +1 -1
- package/css/components/video.css +1 -1
- package/css/index.css +3 -3
- package/css/index.css.map +1 -1
- package/css/monorepo.css +3 -3
- package/css/monorepo.css.map +1 -1
- package/package.json +1 -1
- package/scss/_mixins.scss +1 -1
- package/scss/components/_button.scss +0 -1
- package/scss/components/_formcontrol.scss +4 -0
- package/scss/components/_input.scss +1 -0
- package/scss/components/_profile.scss +1 -2
- package/scss/components/_video.scss +12 -2
package/package.json
CHANGED
package/scss/_mixins.scss
CHANGED
|
@@ -143,7 +143,6 @@
|
|
|
143
143
|
box-shadow:
|
|
144
144
|
4px 4px 0 1px var(--ilo-color-borders-focus) inset,
|
|
145
145
|
-4px -4px 0 1px var(--ilo-color-borders-focus) inset;
|
|
146
|
-
color: var(--ilo-button-labels-focus-color);
|
|
147
146
|
@include globaltransition("color, background-color, border-color");
|
|
148
147
|
|
|
149
148
|
&.#{$prefix}--small {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
--row-1-height: #{$row-1-lg};
|
|
12
12
|
|
|
13
13
|
display: grid;
|
|
14
|
-
grid-template-columns:
|
|
14
|
+
grid-template-columns: auto 1fr;
|
|
15
15
|
grid-template-rows: repeat(minmax(var(--row-1-height), auto));
|
|
16
16
|
max-width: px-to-rem(343px);
|
|
17
17
|
width: 100%;
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
flex-flow: column;
|
|
31
31
|
justify-content: center;
|
|
32
32
|
grid-row: 1;
|
|
33
|
-
grid-column-end: -1;
|
|
34
33
|
}
|
|
35
34
|
|
|
36
35
|
&--figcaption--content {
|
|
@@ -6,8 +6,14 @@
|
|
|
6
6
|
// Video Button
|
|
7
7
|
// ======================================
|
|
8
8
|
@mixin videobutton($name, $size: "standard") {
|
|
9
|
-
$height:
|
|
10
|
-
$box:
|
|
9
|
+
$height: 24px;
|
|
10
|
+
$box: 40px;
|
|
11
|
+
|
|
12
|
+
@if $size == "big" {
|
|
13
|
+
$height: 72px;
|
|
14
|
+
$box: 80px;
|
|
15
|
+
}
|
|
16
|
+
|
|
11
17
|
$width: $height;
|
|
12
18
|
$icon-color-default: rgba(237, 240, 242, 1);
|
|
13
19
|
$icon-color-hover: rgba(30, 45, 190, 1);
|
|
@@ -58,6 +64,10 @@
|
|
|
58
64
|
|
|
59
65
|
@include image-caption-styles;
|
|
60
66
|
|
|
67
|
+
&__theme__dark {
|
|
68
|
+
@include image-caption-dark-styles;
|
|
69
|
+
}
|
|
70
|
+
|
|
61
71
|
// ? drupal style reset issue
|
|
62
72
|
button {
|
|
63
73
|
padding: 0;
|