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