@useblu/ocean-core 1.25.0 → 1.26.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 CHANGED
@@ -3,6 +3,26 @@
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.2](https://github.com/ocean-ds/ocean-web/compare/v1.26.1...v1.26.2) (2022-01-24)
7
+
8
+ ### Bug Fixes
9
+
10
+ - scroll modal mobile ([#889](https://github.com/ocean-ds/ocean-web/issues/889)) ([4bb34f7](https://github.com/ocean-ds/ocean-web/commit/4bb34f7e3b72892f5d4b84c64b94d39a113189f5))
11
+
12
+ ## [1.26.1](https://github.com/ocean-ds/ocean-web/compare/v1.26.0...v1.26.1) (2022-01-18)
13
+
14
+ **Note:** Version bump only for package @useblu/ocean-core
15
+
16
+ # [1.26.0](https://github.com/ocean-ds/ocean-web/compare/v1.25.2...v1.26.0) (2021-12-17)
17
+
18
+ ### Features
19
+
20
+ - new component topbar ([#863](https://github.com/ocean-ds/ocean-web/issues/863)) ([4fd2beb](https://github.com/ocean-ds/ocean-web/commit/4fd2beb1d6fe0f556f11a0876ac1e37d6f2ae4fa))
21
+
22
+ ## [1.25.1](https://github.com/ocean-ds/ocean-web/compare/v1.25.0...v1.25.1) (2021-11-16)
23
+
24
+ **Note:** Version bump only for package @useblu/ocean-core
25
+
6
26
  # [1.25.0](https://github.com/ocean-ds/ocean-web/compare/v1.24.0...v1.25.0) (2021-11-05)
7
27
 
8
28
  ### Bug Fixes
package/ocean.css CHANGED
@@ -2184,6 +2184,7 @@
2184
2184
  }
2185
2185
  .ods-progress__primary svg {
2186
2186
  display: block;
2187
+ stroke-width: 8px;
2187
2188
  }
2188
2189
  .ods-progress__primary svg circle {
2189
2190
  stroke: rgba(255, 255, 255, 0.4);
@@ -2202,6 +2203,7 @@
2202
2203
  stroke: white;
2203
2204
  stroke-dasharray: 80px, 200px;
2204
2205
  stroke-dashoffset: 0;
2206
+ stroke-width: 8px;
2205
2207
  }
2206
2208
  .ods-progress--md {
2207
2209
  height: 24px;
@@ -2315,6 +2317,7 @@
2315
2317
  @media (max-width: 767.98px) {
2316
2318
  .ods-modal__content--after-open {
2317
2319
  max-height: 80%;
2320
+ overflow: auto;
2318
2321
  top: auto;
2319
2322
  }
2320
2323
  }
@@ -2528,4 +2531,68 @@
2528
2531
  .ods-search__clean svg {
2529
2532
  color: #393b47;
2530
2533
  }
2534
+
2535
+ .ods-topbar {
2536
+ align-items: center;
2537
+ display: grid;
2538
+ flex-wrap: wrap;
2539
+ font-family: "Avenir";
2540
+ font-size: 20px;
2541
+ grid-template-columns: 3rem auto 3rem;
2542
+ padding: 10px 5px;
2543
+ width: 100%;
2544
+ }
2545
+ .ods-topbar-scroll-bar {
2546
+ box-shadow: 0 4px 8px rgba(12, 13, 20, 0.08);
2547
+ }
2548
+ .ods-topbar-light {
2549
+ color: #fff;
2550
+ }
2551
+ .ods-topbar-light .ods-topbar-title span {
2552
+ color: #fff;
2553
+ }
2554
+ .ods-topbar-default {
2555
+ color: #0025e0;
2556
+ }
2557
+ .ods-topbar-default .ods-topbar-title {
2558
+ padding-top: 0;
2559
+ }
2560
+ .ods-topbar-default .ods-topbar-title span {
2561
+ color: #67697a;
2562
+ }
2563
+ .ods-topbar-extend {
2564
+ display: flex;
2565
+ grid-template-columns: 50% 50% auto;
2566
+ }
2567
+ .ods-topbar-extend .ods-topbar-title {
2568
+ padding-top: 4rem;
2569
+ }
2570
+ .ods-topbar-extend .ods-topbar-search {
2571
+ width: 50%;
2572
+ }
2573
+ .ods-topbar-prev {
2574
+ line-height: 0;
2575
+ width: 50%;
2576
+ }
2577
+ .ods-topbar-prev svg {
2578
+ cursor: pointer;
2579
+ }
2580
+ .ods-topbar-title {
2581
+ font-weight: 800;
2582
+ line-height: 1.1;
2583
+ width: 100%;
2584
+ }
2585
+ .ods-topbar-title span {
2586
+ color: #67697a;
2587
+ display: block;
2588
+ font-size: 12px;
2589
+ font-weight: 600;
2590
+ }
2591
+ .ods-topbar-search {
2592
+ line-height: 0;
2593
+ text-align: right;
2594
+ }
2595
+ .ods-topbar-search svg {
2596
+ cursor: pointer;
2597
+ }
2531
2598
  /*# sourceMappingURL=ocean.css.map */