@useblu/ocean-core 1.38.3 → 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 CHANGED
@@ -3,6 +3,12 @@
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
+
6
12
  ## [1.38.3](https://github.com/ocean-ds/ocean-web/compare/v1.38.2...v1.38.3) (2022-12-08)
7
13
 
8
14
  ### Bug Fixes
package/ocean.css CHANGED
@@ -3693,4 +3693,32 @@
3693
3693
  color: #b6b9cc;
3694
3694
  margin-left: 16px;
3695
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
+ }
3696
3724
  /*# sourceMappingURL=ocean.css.map */