@useblu/ocean-core 1.50.1 → 1.52.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 +12 -0
- package/ocean.css +69 -12
- 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,18 @@
|
|
|
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.52.0](https://github.com/ocean-ds/ocean-web/compare/v1.51.0...v1.52.0) (2023-11-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- create button variants ([#1086](https://github.com/ocean-ds/ocean-web/issues/1086)) ([92551ad](https://github.com/ocean-ds/ocean-web/commit/92551ad2c1cc94cd7910d10a62dad0e1e63ac2ce))
|
|
11
|
+
|
|
12
|
+
# [1.51.0](https://github.com/ocean-ds/ocean-web/compare/v1.50.1...v1.51.0) (2023-11-14)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- adjust color and font size list ([#1085](https://github.com/ocean-ds/ocean-web/issues/1085)) ([1e93aaa](https://github.com/ocean-ds/ocean-web/commit/1e93aaa7bcbd54837db39ebbded0e70fe958a2ba))
|
|
17
|
+
|
|
6
18
|
## [1.50.1](https://github.com/ocean-ds/ocean-web/compare/v1.50.0...v1.50.1) (2023-10-02)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -1982,17 +1982,30 @@
|
|
|
1982
1982
|
.ods-btn--secondary:active {
|
|
1983
1983
|
background-color: #b6b9cc;
|
|
1984
1984
|
}
|
|
1985
|
+
.ods-btn--secondary-critical {
|
|
1986
|
+
background-color: #fff1f4;
|
|
1987
|
+
color: #f5456e;
|
|
1988
|
+
}
|
|
1989
|
+
.ods-btn--secondary-critical:hover {
|
|
1990
|
+
background-color: #f7f9ff;
|
|
1991
|
+
}
|
|
1992
|
+
.ods-btn--secondary-critical:focus {
|
|
1993
|
+
background-color: #f7f9ff;
|
|
1994
|
+
}
|
|
1995
|
+
.ods-btn--secondary-critical:active {
|
|
1996
|
+
background-color: #ebecf5;
|
|
1997
|
+
}
|
|
1985
1998
|
.ods-btn--text, .ods-btn--text-critical {
|
|
1986
1999
|
background-color: transparent;
|
|
1987
2000
|
}
|
|
1988
2001
|
.ods-btn--text:hover, .ods-btn--text-critical:hover {
|
|
1989
|
-
background-color: #
|
|
2002
|
+
background-color: #f7f9ff;
|
|
1990
2003
|
}
|
|
1991
2004
|
.ods-btn--text:focus, .ods-btn--text-critical:focus {
|
|
1992
|
-
background-color: #
|
|
2005
|
+
background-color: #f7f9ff;
|
|
1993
2006
|
}
|
|
1994
2007
|
.ods-btn--text:active, .ods-btn--text-critical:active {
|
|
1995
|
-
background-color: #
|
|
2008
|
+
background-color: #ebecf5;
|
|
1996
2009
|
}
|
|
1997
2010
|
.ods-btn--text {
|
|
1998
2011
|
color: #0025e0;
|
|
@@ -2000,6 +2013,36 @@
|
|
|
2000
2013
|
.ods-btn--text-critical {
|
|
2001
2014
|
color: #f5456e;
|
|
2002
2015
|
}
|
|
2016
|
+
.ods-btn--text-tertiary, .ods-btn--text-tertiary-critical {
|
|
2017
|
+
background-color: transparent;
|
|
2018
|
+
min-width: auto;
|
|
2019
|
+
padding-left: 0;
|
|
2020
|
+
padding-right: 0;
|
|
2021
|
+
}
|
|
2022
|
+
.ods-btn--text-tertiary {
|
|
2023
|
+
color: #0025e0;
|
|
2024
|
+
}
|
|
2025
|
+
.ods-btn--text-tertiary:hover {
|
|
2026
|
+
color: #5872f5;
|
|
2027
|
+
}
|
|
2028
|
+
.ods-btn--text-tertiary:focus {
|
|
2029
|
+
color: #5872f5;
|
|
2030
|
+
}
|
|
2031
|
+
.ods-btn--text-tertiary:active {
|
|
2032
|
+
color: #0e248f;
|
|
2033
|
+
}
|
|
2034
|
+
.ods-btn--text-tertiary-critical {
|
|
2035
|
+
color: #f5456e;
|
|
2036
|
+
}
|
|
2037
|
+
.ods-btn--text-tertiary-critical:hover {
|
|
2038
|
+
color: #f27592;
|
|
2039
|
+
}
|
|
2040
|
+
.ods-btn--text-tertiary-critical:focus {
|
|
2041
|
+
color: #f27592;
|
|
2042
|
+
}
|
|
2043
|
+
.ods-btn--text-tertiary-critical:active {
|
|
2044
|
+
color: #d31441;
|
|
2045
|
+
}
|
|
2003
2046
|
.ods-btn--inverse {
|
|
2004
2047
|
background-color: #13bdbd;
|
|
2005
2048
|
color: white;
|
|
@@ -2417,8 +2460,8 @@
|
|
|
2417
2460
|
.ods-transaction-list-item__content {
|
|
2418
2461
|
align-items: center;
|
|
2419
2462
|
box-sizing: border-box;
|
|
2420
|
-
-moz-column-gap:
|
|
2421
|
-
column-gap:
|
|
2463
|
+
-moz-column-gap: 8px;
|
|
2464
|
+
column-gap: 8px;
|
|
2422
2465
|
cursor: pointer;
|
|
2423
2466
|
display: flex;
|
|
2424
2467
|
justify-content: center;
|
|
@@ -2432,6 +2475,7 @@
|
|
|
2432
2475
|
}
|
|
2433
2476
|
|
|
2434
2477
|
.ods-transaction-list-item__information {
|
|
2478
|
+
overflow: hidden;
|
|
2435
2479
|
width: 100%;
|
|
2436
2480
|
}
|
|
2437
2481
|
|
|
@@ -2440,7 +2484,7 @@
|
|
|
2440
2484
|
}
|
|
2441
2485
|
|
|
2442
2486
|
.ods-transaction-list-item__level1 {
|
|
2443
|
-
color: #
|
|
2487
|
+
color: #0c0d14;
|
|
2444
2488
|
font-family: "Nunito Sans";
|
|
2445
2489
|
font-size: 16px;
|
|
2446
2490
|
font-weight: 600;
|
|
@@ -2448,18 +2492,30 @@
|
|
|
2448
2492
|
}
|
|
2449
2493
|
|
|
2450
2494
|
.ods-transaction-list-item__level2 {
|
|
2451
|
-
-webkit-box-orient: vertical;
|
|
2452
2495
|
color: #67697a;
|
|
2453
|
-
display: box;
|
|
2454
2496
|
font-family: "Nunito Sans";
|
|
2455
|
-
font-size:
|
|
2497
|
+
font-size: 14px;
|
|
2456
2498
|
font-weight: 400;
|
|
2457
|
-
-webkit-line-clamp: 2;
|
|
2458
2499
|
line-height: 15px;
|
|
2459
2500
|
margin-bottom: 8px;
|
|
2460
|
-
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
.ods-transaction-list-item__level1,
|
|
2504
|
+
.ods-transaction-list-item__level2 {
|
|
2461
2505
|
overflow: hidden;
|
|
2462
2506
|
text-overflow: ellipsis;
|
|
2507
|
+
white-space: nowrap;
|
|
2508
|
+
}
|
|
2509
|
+
@media (max-width: 575.98px) {
|
|
2510
|
+
.ods-transaction-list-item__level1,
|
|
2511
|
+
.ods-transaction-list-item__level2 {
|
|
2512
|
+
-webkit-box-orient: vertical;
|
|
2513
|
+
display: -webkit-box;
|
|
2514
|
+
/* stylelint-disable-line */
|
|
2515
|
+
-webkit-line-clamp: 2;
|
|
2516
|
+
overflow: hidden;
|
|
2517
|
+
white-space: wrap;
|
|
2518
|
+
}
|
|
2463
2519
|
}
|
|
2464
2520
|
|
|
2465
2521
|
.ods-transaction-list-item__level3 {
|
|
@@ -2478,7 +2534,7 @@
|
|
|
2478
2534
|
}
|
|
2479
2535
|
|
|
2480
2536
|
.ods-transaction-list-item__value {
|
|
2481
|
-
color: #
|
|
2537
|
+
color: #0c0d14;
|
|
2482
2538
|
font-family: "Nunito Sans";
|
|
2483
2539
|
font-size: 16px;
|
|
2484
2540
|
font-weight: 700;
|
|
@@ -3728,6 +3784,7 @@
|
|
|
3728
3784
|
font-size: 12px;
|
|
3729
3785
|
font-weight: 600;
|
|
3730
3786
|
line-height: 1;
|
|
3787
|
+
text-decoration: none;
|
|
3731
3788
|
transition: 0.3s hover;
|
|
3732
3789
|
}
|
|
3733
3790
|
.ods-breadcrumb span:last-child,
|