@useblu/ocean-core 1.26.1 → 1.27.3

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,28 @@
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.27.3](https://github.com/ocean-ds/ocean-web/compare/v1.27.2...v1.27.3) (2022-02-15)
7
+
8
+ **Note:** Version bump only for package @useblu/ocean-core
9
+
10
+ ## [1.27.2](https://github.com/ocean-ds/ocean-web/compare/v1.27.1...v1.27.2) (2022-02-11)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **carosel:** add shadown to block ([#910](https://github.com/ocean-ds/ocean-web/issues/910)) ([1835bc6](https://github.com/ocean-ds/ocean-web/commit/1835bc6ec497edcc3d05f7a875c903741d7d729e))
15
+
16
+ ## [1.27.1](https://github.com/ocean-ds/ocean-web/compare/v1.27.0...v1.27.1) (2022-02-11)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **carosel:** layout adjustments ([#906](https://github.com/ocean-ds/ocean-web/issues/906)) ([c6f258b](https://github.com/ocean-ds/ocean-web/commit/c6f258b74589c4eb448473fcf414111ed265ec28))
21
+
22
+ ## [1.26.2](https://github.com/ocean-ds/ocean-web/compare/v1.26.1...v1.26.2) (2022-01-24)
23
+
24
+ ### Bug Fixes
25
+
26
+ - scroll modal mobile ([#889](https://github.com/ocean-ds/ocean-web/issues/889)) ([4bb34f7](https://github.com/ocean-ds/ocean-web/commit/4bb34f7e3b72892f5d4b84c64b94d39a113189f5))
27
+
6
28
  ## [1.26.1](https://github.com/ocean-ds/ocean-web/compare/v1.26.0...v1.26.1) (2022-01-18)
7
29
 
8
30
  **Note:** Version bump only for package @useblu/ocean-core
package/ocean.css CHANGED
@@ -1639,6 +1639,21 @@
1639
1639
  line-height: 1.5;
1640
1640
  }
1641
1641
 
1642
+ .ods-carousel.columns-5, .ods-carousel.columns-4, .ods-carousel.columns-3, .ods-carousel.columns-2 {
1643
+ overflow: hidden;
1644
+ }
1645
+ .ods-carousel.columns-5 .slick-track, .ods-carousel.columns-4 .slick-track, .ods-carousel.columns-3 .slick-track, .ods-carousel.columns-2 .slick-track {
1646
+ gap: 8px;
1647
+ }
1648
+ .ods-carousel.columns-5 .slick-list, .ods-carousel.columns-4 .slick-list, .ods-carousel.columns-3 .slick-list, .ods-carousel.columns-2 .slick-list {
1649
+ box-shadow: none;
1650
+ overflow: inherit;
1651
+ }
1652
+ .ods-carousel.columns-5 .slick-slide, .ods-carousel.columns-4 .slick-slide, .ods-carousel.columns-3 .slick-slide, .ods-carousel.columns-2 .slick-slide {
1653
+ border-radius: 8px;
1654
+ box-shadow: 0 4px 8px rgba(12, 13, 20, 0.08);
1655
+ }
1656
+
1642
1657
  .slick-slider {
1643
1658
  box-sizing: border-box;
1644
1659
  display: block;
@@ -1651,10 +1666,24 @@
1651
1666
  -ms-user-select: none;
1652
1667
  user-select: none;
1653
1668
  }
1669
+ .slick-slider .slick-arrow {
1670
+ display: none !important;
1671
+ }
1672
+ .slick-slider:hover .slick-arrow {
1673
+ display: block !important;
1674
+ }
1675
+ @media (max-width: 767.98px) {
1676
+ .slick-slider:hover .slick-arrow {
1677
+ display: none !important;
1678
+ }
1679
+ }
1654
1680
 
1655
1681
  .slick-list {
1682
+ border-radius: 8px;
1683
+ box-shadow: 0 4px 8px rgba(12, 13, 20, 0.08);
1656
1684
  display: block;
1657
1685
  margin: 0;
1686
+ margin-bottom: 15px;
1658
1687
  overflow: hidden;
1659
1688
  padding: 0;
1660
1689
  position: relative;
@@ -1668,27 +1697,12 @@
1668
1697
  .slick-track {
1669
1698
  display: flex;
1670
1699
  left: 0;
1671
- margin-bottom: 15px;
1672
1700
  margin-left: auto;
1673
1701
  margin-right: auto;
1674
1702
  position: relative;
1675
1703
  top: 0;
1676
1704
  }
1677
1705
 
1678
- .slick-track > div:not(:first-child) {
1679
- margin-left: 8px;
1680
- margin-right: 8px;
1681
- }
1682
-
1683
- .slick-track > div:first-child {
1684
- margin-left: 4px;
1685
- margin-right: 8px;
1686
- }
1687
-
1688
- .slick-track > div:last-child {
1689
- margin-right: 8px;
1690
- }
1691
-
1692
1706
  .slick-slide {
1693
1707
  display: block;
1694
1708
  float: left;
@@ -1696,6 +1710,9 @@
1696
1710
  min-height: 1px;
1697
1711
  }
1698
1712
 
1713
+ .slick-arrow {
1714
+ box-shadow: 0 4px 8px rgba(12, 13, 20, 0.08);
1715
+ }
1699
1716
  @media (max-width: 767.98px) {
1700
1717
  .slick-arrow {
1701
1718
  display: none !important;
@@ -1714,7 +1731,7 @@
1714
1731
  outline: none;
1715
1732
  padding: 0;
1716
1733
  position: absolute;
1717
- right: -10px;
1734
+ right: 8px;
1718
1735
  top: 45%;
1719
1736
  transform: translate(0, -50%);
1720
1737
  width: 30px;
@@ -1727,7 +1744,7 @@
1727
1744
  color: #0025e0;
1728
1745
  font-size: 0;
1729
1746
  height: 30px;
1730
- left: -10px;
1747
+ left: 8px;
1731
1748
  line-height: 0;
1732
1749
  margin-top: -10px;
1733
1750
  outline: none;
@@ -1813,7 +1830,7 @@
1813
1830
  line-height: 0;
1814
1831
  outline: none;
1815
1832
  padding: 5px;
1816
- width: 20px;
1833
+ width: 8px;
1817
1834
  }
1818
1835
 
1819
1836
  .ods-carousel-dots li button::before {
@@ -2317,6 +2334,7 @@
2317
2334
  @media (max-width: 767.98px) {
2318
2335
  .ods-modal__content--after-open {
2319
2336
  max-height: 80%;
2337
+ overflow: auto;
2320
2338
  top: auto;
2321
2339
  }
2322
2340
  }
@@ -2533,12 +2551,12 @@
2533
2551
 
2534
2552
  .ods-topbar {
2535
2553
  align-items: center;
2536
- display: grid;
2537
- flex-wrap: wrap;
2554
+ display: flex;
2555
+ flex-direction: row;
2538
2556
  font-family: "Avenir";
2539
2557
  font-size: 20px;
2540
2558
  grid-template-columns: 3rem auto 3rem;
2541
- padding: 10px 5px;
2559
+ height: 56px;
2542
2560
  width: 100%;
2543
2561
  }
2544
2562
  .ods-topbar-scroll-bar {
@@ -2560,25 +2578,42 @@
2560
2578
  color: #67697a;
2561
2579
  }
2562
2580
  .ods-topbar-extend {
2581
+ box-sizing: border-box;
2563
2582
  display: flex;
2564
- grid-template-columns: 50% 50% auto;
2583
+ flex-direction: column;
2584
+ height: 128px;
2585
+ justify-content: space-between;
2586
+ padding: 16px 16px 8px;
2565
2587
  }
2566
- .ods-topbar-extend .ods-topbar-title {
2567
- padding-top: 4rem;
2588
+ .ods-topbar-extend .ods-topbar-actions {
2589
+ display: flex;
2590
+ flex-direction: row;
2591
+ height: 72px;
2592
+ justify-content: space-between;
2593
+ width: 100%;
2568
2594
  }
2569
- .ods-topbar-extend .ods-topbar-search {
2570
- width: 50%;
2595
+ .ods-topbar-extend .ods-topbar-left {
2596
+ margin-left: 0;
2571
2597
  }
2572
- .ods-topbar-prev {
2598
+ .ods-topbar-extend .ods-topbar-right {
2599
+ margin-right: 0;
2600
+ }
2601
+ .ods-topbar-left {
2573
2602
  line-height: 0;
2574
- width: 50%;
2603
+ margin-left: 16px;
2604
+ width: 24px;
2575
2605
  }
2576
- .ods-topbar-prev svg {
2606
+ .ods-topbar-left span {
2607
+ align-items: center;
2577
2608
  cursor: pointer;
2609
+ display: flex;
2610
+ justify-content: center;
2578
2611
  }
2579
2612
  .ods-topbar-title {
2580
2613
  font-weight: 800;
2581
2614
  line-height: 1.1;
2615
+ margin-left: 16px;
2616
+ margin-right: 16px;
2582
2617
  width: 100%;
2583
2618
  }
2584
2619
  .ods-topbar-title span {
@@ -2587,11 +2622,15 @@
2587
2622
  font-size: 12px;
2588
2623
  font-weight: 600;
2589
2624
  }
2590
- .ods-topbar-search {
2625
+ .ods-topbar-right {
2591
2626
  line-height: 0;
2592
- text-align: right;
2627
+ margin-right: 16px;
2628
+ width: 24px;
2593
2629
  }
2594
- .ods-topbar-search svg {
2630
+ .ods-topbar-right span {
2631
+ align-items: center;
2595
2632
  cursor: pointer;
2633
+ display: flex;
2634
+ justify-content: center;
2596
2635
  }
2597
2636
  /*# sourceMappingURL=ocean.css.map */