@useblu/ocean-core 1.58.0 → 1.59.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 +6 -0
- package/ocean.css +8 -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,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.59.0](https://github.com/ocean-ds/ocean-web/compare/v1.58.0...v1.59.0) (2024-05-16)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- mobile bradcrumbs ([#1100](https://github.com/ocean-ds/ocean-web/issues/1100)) ([2668a53](https://github.com/ocean-ds/ocean-web/commit/2668a53511ed0222afb71f43d9aca1288c9c2689))
|
|
11
|
+
|
|
6
12
|
# [1.58.0](https://github.com/ocean-ds/ocean-web/compare/v1.57.1...v1.58.0) (2024-05-15)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -3816,7 +3816,13 @@
|
|
|
3816
3816
|
display: flex;
|
|
3817
3817
|
gap: 4px;
|
|
3818
3818
|
}
|
|
3819
|
+
.ods-breadcrumb button {
|
|
3820
|
+
background: none;
|
|
3821
|
+
border: transparent;
|
|
3822
|
+
outline: 1px solid transparent;
|
|
3823
|
+
}
|
|
3819
3824
|
.ods-breadcrumb span,
|
|
3825
|
+
.ods-breadcrumb button,
|
|
3820
3826
|
.ods-breadcrumb a {
|
|
3821
3827
|
color: #aaadc0;
|
|
3822
3828
|
font-family: "Nunito Sans";
|
|
@@ -3827,11 +3833,13 @@
|
|
|
3827
3833
|
transition: 0.3s hover;
|
|
3828
3834
|
}
|
|
3829
3835
|
.ods-breadcrumb span:last-child,
|
|
3836
|
+
.ods-breadcrumb button:last-child,
|
|
3830
3837
|
.ods-breadcrumb a:last-child {
|
|
3831
3838
|
color: #67697a;
|
|
3832
3839
|
cursor: default;
|
|
3833
3840
|
}
|
|
3834
3841
|
.ods-breadcrumb span:not(:last-child):hover,
|
|
3842
|
+
.ods-breadcrumb button:not(:last-child):hover,
|
|
3835
3843
|
.ods-breadcrumb a:not(:last-child):hover {
|
|
3836
3844
|
cursor: pointer;
|
|
3837
3845
|
text-decoration: underline;
|