@oslokommune/punkt-css 0.21.5 → 0.22.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/CHANGELOG.md +19 -0
- package/dist/css/pkt-base.css +14 -5
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt.css +14 -5
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/abstracts/variables/_colors.scss +1 -0
- package/dist/scss/base/_accessibility.scss +1 -1
- package/dist/scss/base/_typography.scss +4 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.22.0](https://github.com/oslokommune/punkt/compare/v0.21.7...v0.22.0) (2023-02-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **css:** [#659](https://github.com/oslokommune/punkt/issues/659) - Lagt på prefix på hjelpeklasser ([f95daec](https://github.com/oslokommune/punkt/commit/f95daece763b74f4197492a8623d421e48ef62b5))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.21.6](https://github.com/oslokommune/punkt/compare/v0.21.5...v0.21.6) (2023-02-20)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @oslokommune/punkt-css
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.21.5](https://github.com/oslokommune/punkt/compare/v0.21.4...v0.21.5) (2023-02-15)
|
|
7
26
|
|
|
8
27
|
|
package/dist/css/pkt-base.css
CHANGED
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
--color-green-light: #c7f6c9;
|
|
60
60
|
--color-green-dark: #034b45;
|
|
61
61
|
--color-red: #ff8274;
|
|
62
|
+
--color-red-light: #ffb4ac;
|
|
62
63
|
--color-yellow: #f9c66b;
|
|
63
64
|
--color-beige-light: #f8f0dd;
|
|
64
65
|
--color-beige-dark: #d0bfae;
|
|
@@ -157,6 +158,14 @@
|
|
|
157
158
|
color: #ff8274 !important;
|
|
158
159
|
}
|
|
159
160
|
|
|
161
|
+
.bg-color-red-light {
|
|
162
|
+
background-color: #ffb4ac !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.txt-color-red-light {
|
|
166
|
+
color: #ffb4ac !important;
|
|
167
|
+
}
|
|
168
|
+
|
|
160
169
|
.bg-color-yellow {
|
|
161
170
|
background-color: #f9c66b !important;
|
|
162
171
|
}
|
|
@@ -9574,15 +9583,15 @@ a:active {
|
|
|
9574
9583
|
/*
|
|
9575
9584
|
* Alignment
|
|
9576
9585
|
*/
|
|
9577
|
-
.
|
|
9586
|
+
.pkt-txt-start {
|
|
9578
9587
|
text-align: left !important;
|
|
9579
9588
|
}
|
|
9580
9589
|
|
|
9581
|
-
.
|
|
9590
|
+
.pkt-txt-end {
|
|
9582
9591
|
text-align: right !important;
|
|
9583
9592
|
}
|
|
9584
9593
|
|
|
9585
|
-
.
|
|
9594
|
+
.pkt-txt-center {
|
|
9586
9595
|
text-align: center !important;
|
|
9587
9596
|
}
|
|
9588
9597
|
|
|
@@ -9590,7 +9599,7 @@ a:active {
|
|
|
9590
9599
|
* Truncate text
|
|
9591
9600
|
* requires inline-block or block
|
|
9592
9601
|
*/
|
|
9593
|
-
.truncate-
|
|
9602
|
+
.pkt-truncate-txt {
|
|
9594
9603
|
overflow: hidden;
|
|
9595
9604
|
text-overflow: ellipsis;
|
|
9596
9605
|
white-space: nowrap;
|
|
@@ -9701,7 +9710,7 @@ a:active {
|
|
|
9701
9710
|
* Accessibility
|
|
9702
9711
|
* https://kittygiraudel.com/2016/10/13/css-hide-and-seek/#undesirable-overflows-18012019
|
|
9703
9712
|
*/
|
|
9704
|
-
.sr-only {
|
|
9713
|
+
.pkt-sr-only {
|
|
9705
9714
|
border: 0 !important;
|
|
9706
9715
|
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
9707
9716
|
-webkit-clip-path: inset(50%) !important;
|