@useblu/ocean-core 1.38.3 → 1.39.2
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 +29 -0
- 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.2](https://github.com/ocean-ds/ocean-web/compare/v1.39.1...v1.39.2) (2022-12-21)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- position component checkbox ([#1040](https://github.com/ocean-ds/ocean-web/issues/1040)) ([34a36cd](https://github.com/ocean-ds/ocean-web/commit/34a36cdfd4a7f2cbd70d25ae01212927195c3ef8))
|
|
11
|
+
|
|
12
|
+
# [1.39.0](https://github.com/ocean-ds/ocean-web/compare/v1.38.3...v1.39.0) (2022-12-13)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add component breadcrumb ([#1042](https://github.com/ocean-ds/ocean-web/issues/1042)) ([de21cbb](https://github.com/ocean-ds/ocean-web/commit/de21cbba7a69bbba30cecbb69e7731665c178616))
|
|
17
|
+
|
|
6
18
|
## [1.38.3](https://github.com/ocean-ds/ocean-web/compare/v1.38.2...v1.38.3) (2022-12-08)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
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;
|
|
@@ -3693,4 +3694,32 @@
|
|
|
3693
3694
|
color: #b6b9cc;
|
|
3694
3695
|
margin-left: 16px;
|
|
3695
3696
|
}
|
|
3697
|
+
|
|
3698
|
+
.ods-breadcrumb {
|
|
3699
|
+
align-items: center;
|
|
3700
|
+
display: flex;
|
|
3701
|
+
gap: 8px;
|
|
3702
|
+
}
|
|
3703
|
+
.ods-breadcrumb svg {
|
|
3704
|
+
color: #b6b9cc;
|
|
3705
|
+
}
|
|
3706
|
+
.ods-breadcrumb span,
|
|
3707
|
+
.ods-breadcrumb a {
|
|
3708
|
+
color: #b6b9cc;
|
|
3709
|
+
font-family: "Nunito Sans";
|
|
3710
|
+
font-size: 12px;
|
|
3711
|
+
font-weight: 600;
|
|
3712
|
+
line-height: 1;
|
|
3713
|
+
transition: 0.3s hover;
|
|
3714
|
+
}
|
|
3715
|
+
.ods-breadcrumb span:last-child,
|
|
3716
|
+
.ods-breadcrumb a:last-child {
|
|
3717
|
+
color: #67697a;
|
|
3718
|
+
cursor: default;
|
|
3719
|
+
}
|
|
3720
|
+
.ods-breadcrumb span:not(:last-child):hover,
|
|
3721
|
+
.ods-breadcrumb a:not(:last-child):hover {
|
|
3722
|
+
cursor: pointer;
|
|
3723
|
+
text-decoration: underline;
|
|
3724
|
+
}
|
|
3696
3725
|
/*# sourceMappingURL=ocean.css.map */
|