@useblu/ocean-core 1.39.0 → 1.39.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 +12 -0
- package/ocean.css +4 -1
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [1.39.3](https://github.com/ocean-ds/ocean-web/compare/v1.39.2...v1.39.3) (2022-12-22)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- adjust sub header padding and height ([#1050](https://github.com/ocean-ds/ocean-web/issues/1050)) ([8241d09](https://github.com/ocean-ds/ocean-web/commit/8241d0941c4a98de04a30f99aa236e35579ccfbf))
|
|
11
|
+
|
|
12
|
+
## [1.39.2](https://github.com/ocean-ds/ocean-web/compare/v1.39.1...v1.39.2) (2022-12-21)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- position component checkbox ([#1040](https://github.com/ocean-ds/ocean-web/issues/1040)) ([34a36cd](https://github.com/ocean-ds/ocean-web/commit/34a36cdfd4a7f2cbd70d25ae01212927195c3ef8))
|
|
17
|
+
|
|
6
18
|
# [1.39.0](https://github.com/ocean-ds/ocean-web/compare/v1.38.3...v1.39.0) (2022-12-13)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -1537,6 +1537,7 @@
|
|
|
1537
1537
|
}
|
|
1538
1538
|
.ods-checkbox:checked ~ .ods-checkbox__checkmark::after {
|
|
1539
1539
|
display: block;
|
|
1540
|
+
position: relative;
|
|
1540
1541
|
}
|
|
1541
1542
|
.ods-checkbox:checked:not(:disabled) ~ .ods-checkbox__checkmark {
|
|
1542
1543
|
background-color: #13bdbd;
|
|
@@ -2662,11 +2663,13 @@
|
|
|
2662
2663
|
}
|
|
2663
2664
|
|
|
2664
2665
|
.ods-sub-header {
|
|
2666
|
+
align-items: center;
|
|
2665
2667
|
background-color: #f7f9ff;
|
|
2666
2668
|
box-sizing: border-box;
|
|
2667
2669
|
display: flex;
|
|
2668
2670
|
justify-content: space-between;
|
|
2669
|
-
|
|
2671
|
+
min-height: 40px;
|
|
2672
|
+
padding: 8px 16px;
|
|
2670
2673
|
width: 100%;
|
|
2671
2674
|
}
|
|
2672
2675
|
|