@useblu/ocean-core 1.50.1 → 1.51.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 +23 -9
- 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.51.0](https://github.com/ocean-ds/ocean-web/compare/v1.50.1...v1.51.0) (2023-11-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- 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))
|
|
11
|
+
|
|
6
12
|
## [1.50.1](https://github.com/ocean-ds/ocean-web/compare/v1.50.0...v1.50.1) (2023-10-02)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -2417,8 +2417,8 @@
|
|
|
2417
2417
|
.ods-transaction-list-item__content {
|
|
2418
2418
|
align-items: center;
|
|
2419
2419
|
box-sizing: border-box;
|
|
2420
|
-
-moz-column-gap:
|
|
2421
|
-
column-gap:
|
|
2420
|
+
-moz-column-gap: 8px;
|
|
2421
|
+
column-gap: 8px;
|
|
2422
2422
|
cursor: pointer;
|
|
2423
2423
|
display: flex;
|
|
2424
2424
|
justify-content: center;
|
|
@@ -2432,6 +2432,7 @@
|
|
|
2432
2432
|
}
|
|
2433
2433
|
|
|
2434
2434
|
.ods-transaction-list-item__information {
|
|
2435
|
+
overflow: hidden;
|
|
2435
2436
|
width: 100%;
|
|
2436
2437
|
}
|
|
2437
2438
|
|
|
@@ -2440,7 +2441,7 @@
|
|
|
2440
2441
|
}
|
|
2441
2442
|
|
|
2442
2443
|
.ods-transaction-list-item__level1 {
|
|
2443
|
-
color: #
|
|
2444
|
+
color: #0c0d14;
|
|
2444
2445
|
font-family: "Nunito Sans";
|
|
2445
2446
|
font-size: 16px;
|
|
2446
2447
|
font-weight: 600;
|
|
@@ -2448,18 +2449,30 @@
|
|
|
2448
2449
|
}
|
|
2449
2450
|
|
|
2450
2451
|
.ods-transaction-list-item__level2 {
|
|
2451
|
-
-webkit-box-orient: vertical;
|
|
2452
2452
|
color: #67697a;
|
|
2453
|
-
display: box;
|
|
2454
2453
|
font-family: "Nunito Sans";
|
|
2455
|
-
font-size:
|
|
2454
|
+
font-size: 14px;
|
|
2456
2455
|
font-weight: 400;
|
|
2457
|
-
-webkit-line-clamp: 2;
|
|
2458
2456
|
line-height: 15px;
|
|
2459
2457
|
margin-bottom: 8px;
|
|
2460
|
-
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
.ods-transaction-list-item__level1,
|
|
2461
|
+
.ods-transaction-list-item__level2 {
|
|
2461
2462
|
overflow: hidden;
|
|
2462
2463
|
text-overflow: ellipsis;
|
|
2464
|
+
white-space: nowrap;
|
|
2465
|
+
}
|
|
2466
|
+
@media (max-width: 575.98px) {
|
|
2467
|
+
.ods-transaction-list-item__level1,
|
|
2468
|
+
.ods-transaction-list-item__level2 {
|
|
2469
|
+
-webkit-box-orient: vertical;
|
|
2470
|
+
display: -webkit-box;
|
|
2471
|
+
/* stylelint-disable-line */
|
|
2472
|
+
-webkit-line-clamp: 2;
|
|
2473
|
+
overflow: hidden;
|
|
2474
|
+
white-space: wrap;
|
|
2475
|
+
}
|
|
2463
2476
|
}
|
|
2464
2477
|
|
|
2465
2478
|
.ods-transaction-list-item__level3 {
|
|
@@ -2478,7 +2491,7 @@
|
|
|
2478
2491
|
}
|
|
2479
2492
|
|
|
2480
2493
|
.ods-transaction-list-item__value {
|
|
2481
|
-
color: #
|
|
2494
|
+
color: #0c0d14;
|
|
2482
2495
|
font-family: "Nunito Sans";
|
|
2483
2496
|
font-size: 16px;
|
|
2484
2497
|
font-weight: 700;
|
|
@@ -3728,6 +3741,7 @@
|
|
|
3728
3741
|
font-size: 12px;
|
|
3729
3742
|
font-weight: 600;
|
|
3730
3743
|
line-height: 1;
|
|
3744
|
+
text-decoration: none;
|
|
3731
3745
|
transition: 0.3s hover;
|
|
3732
3746
|
}
|
|
3733
3747
|
.ods-breadcrumb span:last-child,
|