@useblu/ocean-core 1.26.0 → 1.26.1
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 +4 -0
- package/ocean.css +13 -7
- 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,10 @@
|
|
|
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.26.1](https://github.com/ocean-ds/ocean-web/compare/v1.26.0...v1.26.1) (2022-01-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @useblu/ocean-core
|
|
9
|
+
|
|
6
10
|
# [1.26.0](https://github.com/ocean-ds/ocean-web/compare/v1.25.2...v1.26.0) (2021-12-17)
|
|
7
11
|
|
|
8
12
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2533,12 +2533,17 @@
|
|
|
2533
2533
|
|
|
2534
2534
|
.ods-topbar {
|
|
2535
2535
|
align-items: center;
|
|
2536
|
-
display:
|
|
2536
|
+
display: grid;
|
|
2537
2537
|
flex-wrap: wrap;
|
|
2538
2538
|
font-family: "Avenir";
|
|
2539
2539
|
font-size: 20px;
|
|
2540
|
+
grid-template-columns: 3rem auto 3rem;
|
|
2541
|
+
padding: 10px 5px;
|
|
2540
2542
|
width: 100%;
|
|
2541
2543
|
}
|
|
2544
|
+
.ods-topbar-scroll-bar {
|
|
2545
|
+
box-shadow: 0 4px 8px rgba(12, 13, 20, 0.08);
|
|
2546
|
+
}
|
|
2542
2547
|
.ods-topbar-light {
|
|
2543
2548
|
color: #fff;
|
|
2544
2549
|
}
|
|
@@ -2548,18 +2553,21 @@
|
|
|
2548
2553
|
.ods-topbar-default {
|
|
2549
2554
|
color: #0025e0;
|
|
2550
2555
|
}
|
|
2556
|
+
.ods-topbar-default .ods-topbar-title {
|
|
2557
|
+
padding-top: 0;
|
|
2558
|
+
}
|
|
2551
2559
|
.ods-topbar-default .ods-topbar-title span {
|
|
2552
2560
|
color: #67697a;
|
|
2553
2561
|
}
|
|
2554
2562
|
.ods-topbar-extend {
|
|
2555
|
-
display:
|
|
2556
|
-
grid-template-columns:
|
|
2563
|
+
display: flex;
|
|
2564
|
+
grid-template-columns: 50% 50% auto;
|
|
2557
2565
|
}
|
|
2558
2566
|
.ods-topbar-extend .ods-topbar-title {
|
|
2559
|
-
padding-top:
|
|
2567
|
+
padding-top: 4rem;
|
|
2560
2568
|
}
|
|
2561
2569
|
.ods-topbar-extend .ods-topbar-search {
|
|
2562
|
-
width:
|
|
2570
|
+
width: 50%;
|
|
2563
2571
|
}
|
|
2564
2572
|
.ods-topbar-prev {
|
|
2565
2573
|
line-height: 0;
|
|
@@ -2571,7 +2579,6 @@
|
|
|
2571
2579
|
.ods-topbar-title {
|
|
2572
2580
|
font-weight: 800;
|
|
2573
2581
|
line-height: 1.1;
|
|
2574
|
-
padding-top: 5rem;
|
|
2575
2582
|
width: 100%;
|
|
2576
2583
|
}
|
|
2577
2584
|
.ods-topbar-title span {
|
|
@@ -2583,7 +2590,6 @@
|
|
|
2583
2590
|
.ods-topbar-search {
|
|
2584
2591
|
line-height: 0;
|
|
2585
2592
|
text-align: right;
|
|
2586
|
-
width: 50%;
|
|
2587
2593
|
}
|
|
2588
2594
|
.ods-topbar-search svg {
|
|
2589
2595
|
cursor: pointer;
|