@financial-times/cp-content-pipeline-ui 9.23.2 → 9.23.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/CHANGELOG.md
CHANGED
|
@@ -574,6 +574,15 @@
|
|
|
574
574
|
* @financial-times/cp-content-pipeline-client bumped from ^3.7.2 to ^3.7.3
|
|
575
575
|
* @financial-times/cp-content-pipeline-schema bumped from ^2.10.1 to ^2.10.2
|
|
576
576
|
|
|
577
|
+
## [9.23.3](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-ui-v9.23.2...cp-content-pipeline-ui-v9.23.3) (2026-02-19)
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
### Bug Fixes
|
|
581
|
+
|
|
582
|
+
* ci-3364 put icon in :after ([bd818fd](https://github.com/Financial-Times/cp-content-pipeline/commit/bd818fd54ff2feb950fe745e09e913ffa210df0d))
|
|
583
|
+
* ci-3364 transcript icon o3 ([5b02cfb](https://github.com/Financial-Times/cp-content-pipeline/commit/5b02cfbadcee8f0a1f4a7454787ef6f7c8d3d778))
|
|
584
|
+
* ci-3423 clips buttons spacing ([f6a5440](https://github.com/Financial-Times/cp-content-pipeline/commit/f6a54408dd4396399d88f4531de54dbefd02c14e))
|
|
585
|
+
|
|
577
586
|
## [9.23.2](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-ui-v9.23.1...cp-content-pipeline-ui-v9.23.2) (2026-02-13)
|
|
578
587
|
|
|
579
588
|
|
package/package.json
CHANGED
|
@@ -57,9 +57,6 @@
|
|
|
57
57
|
align-items: flex-end;
|
|
58
58
|
padding: var(--o3-spacing-5xs) var(--o3-spacing-4xs) var(--o3-spacing-s) var(--o3-spacing-4xs);
|
|
59
59
|
box-sizing: border-box;
|
|
60
|
-
@include oGridRespondTo($from: L) {
|
|
61
|
-
padding: var(--o3-spacing-5xs) var(--o3-spacing-s) var(--o3-spacing-s) var(--o3-spacing-s)
|
|
62
|
-
}
|
|
63
60
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
|
|
64
61
|
&--fade-out:not(:has(button:focus)) {
|
|
65
62
|
@include fade-out-animation();
|
|
@@ -22,10 +22,6 @@
|
|
|
22
22
|
min-width: 100%;
|
|
23
23
|
|
|
24
24
|
.o-expander__toggle[aria-expanded='false'] {
|
|
25
|
-
background-image: url('https://images.ft.com/v3/image/raw/fticon-v1%3Amedia-description?source=next');
|
|
26
|
-
background-repeat: no-repeat;
|
|
27
|
-
background-color: var(--o3-color-palette-black-5);
|
|
28
|
-
background-position: center;
|
|
29
25
|
display: block;
|
|
30
26
|
// Icon size is used also in _caption.scss
|
|
31
27
|
width: 30px;
|
|
@@ -33,6 +29,20 @@
|
|
|
33
29
|
padding: 0px;
|
|
34
30
|
position: absolute;
|
|
35
31
|
float: right;
|
|
32
|
+
&:after {
|
|
33
|
+
content: "";
|
|
34
|
+
display: block;
|
|
35
|
+
position: absolute;
|
|
36
|
+
top: 0;
|
|
37
|
+
left: 0;
|
|
38
|
+
width: 100%;
|
|
39
|
+
height: 100%;
|
|
40
|
+
background-color: var(--o3-color-palette-black-80);
|
|
41
|
+
mask-image: var(--o3-icon-media-description);
|
|
42
|
+
mask-repeat: no-repeat;
|
|
43
|
+
mask-size: var(--o3-spacing-xs);
|
|
44
|
+
mask-position: center;
|
|
45
|
+
}
|
|
36
46
|
}
|
|
37
47
|
}
|
|
38
48
|
|