@useblu/ocean-core 1.59.0 → 1.59.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 +6 -0
- package/ocean.css +43 -15
- 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.59.1](https://github.com/ocean-ds/ocean-web/compare/v1.59.0...v1.59.1) (2024-05-29)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- adjust on transaction list item ([#1101](https://github.com/ocean-ds/ocean-web/issues/1101)) ([a8fd429](https://github.com/ocean-ds/ocean-web/commit/a8fd42946502676a556e93897d1167139b34ef8e))
|
|
11
|
+
|
|
6
12
|
# [1.59.0](https://github.com/ocean-ds/ocean-web/compare/v1.58.0...v1.59.0) (2024-05-16)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2435,14 +2435,9 @@
|
|
|
2435
2435
|
|
|
2436
2436
|
.ods-transaction-list-item__icon {
|
|
2437
2437
|
align-items: center;
|
|
2438
|
-
background-color: #f3f5fe;
|
|
2439
|
-
border-radius: 40px;
|
|
2440
2438
|
color: #aaadc0;
|
|
2441
2439
|
display: flex;
|
|
2442
|
-
height: 40px;
|
|
2443
2440
|
justify-content: center;
|
|
2444
|
-
min-width: 40px;
|
|
2445
|
-
width: 40px;
|
|
2446
2441
|
}
|
|
2447
2442
|
@media (max-width: 575.98px) {
|
|
2448
2443
|
.ods-transaction-list-item__icon {
|
|
@@ -2460,14 +2455,26 @@
|
|
|
2460
2455
|
.ods-transaction-list-item:hover, .ods-transaction-list-item:focus {
|
|
2461
2456
|
background-color: #f3f5fe;
|
|
2462
2457
|
}
|
|
2463
|
-
.ods-transaction-list-item:hover .ods-transaction-list-item__icon, .ods-transaction-list-item:focus .ods-transaction-list-item__icon {
|
|
2464
|
-
background-color: #e0e2ee;
|
|
2465
|
-
}
|
|
2466
2458
|
.ods-transaction-list-item:active {
|
|
2467
2459
|
background-color: #ced1e1;
|
|
2468
2460
|
}
|
|
2469
|
-
.ods-transaction-list-item
|
|
2470
|
-
|
|
2461
|
+
.ods-transaction-list-item.ods-transaction-list-item--readonly {
|
|
2462
|
+
pointer-events: none;
|
|
2463
|
+
}
|
|
2464
|
+
.ods-transaction-list-item.ods-transaction-list-item--readonly:hover {
|
|
2465
|
+
background-color: inherit;
|
|
2466
|
+
}
|
|
2467
|
+
.ods-transaction-list-item--chevron .ods-transaction-list-item__content {
|
|
2468
|
+
padding: 16px 8px 16px 16px;
|
|
2469
|
+
}
|
|
2470
|
+
.ods-transaction-list-item--readonly .ods-transaction-list-item__content {
|
|
2471
|
+
padding: 16px;
|
|
2472
|
+
}
|
|
2473
|
+
.ods-transaction-list-item--isloading {
|
|
2474
|
+
pointer-events: none;
|
|
2475
|
+
}
|
|
2476
|
+
.ods-transaction-list-item--isloading .ods-transaction-list-item__content:hover, .ods-transaction-list-item--isloading .ods-transaction-list-item__content:focus {
|
|
2477
|
+
background-color: white;
|
|
2471
2478
|
}
|
|
2472
2479
|
.ods-transaction-list-item .ods-transaction-list-item__sub-itens .ods-transaction-list-item {
|
|
2473
2480
|
background-color: transparent;
|
|
@@ -2498,8 +2505,6 @@
|
|
|
2498
2505
|
.ods-transaction-list-item__content {
|
|
2499
2506
|
align-items: center;
|
|
2500
2507
|
box-sizing: border-box;
|
|
2501
|
-
-moz-column-gap: 8px;
|
|
2502
|
-
column-gap: 8px;
|
|
2503
2508
|
cursor: pointer;
|
|
2504
2509
|
display: flex;
|
|
2505
2510
|
justify-content: center;
|
|
@@ -2513,9 +2518,15 @@
|
|
|
2513
2518
|
}
|
|
2514
2519
|
|
|
2515
2520
|
.ods-transaction-list-item__information {
|
|
2521
|
+
margin: 0 16px 0 12px;
|
|
2516
2522
|
overflow: hidden;
|
|
2517
2523
|
width: 100%;
|
|
2518
2524
|
}
|
|
2525
|
+
@media (max-width: 575.98px) {
|
|
2526
|
+
.ods-transaction-list-item__information {
|
|
2527
|
+
margin: 0 8px 0 0;
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2519
2530
|
|
|
2520
2531
|
.ods-transaction-list-item__sub-information {
|
|
2521
2532
|
text-align: right;
|
|
@@ -2525,7 +2536,7 @@
|
|
|
2525
2536
|
color: #0c0d14;
|
|
2526
2537
|
font-family: "Nunito Sans";
|
|
2527
2538
|
font-size: 16px;
|
|
2528
|
-
font-weight:
|
|
2539
|
+
font-weight: 400;
|
|
2529
2540
|
margin-bottom: 4px;
|
|
2530
2541
|
}
|
|
2531
2542
|
|
|
@@ -2557,7 +2568,7 @@
|
|
|
2557
2568
|
}
|
|
2558
2569
|
|
|
2559
2570
|
.ods-transaction-list-item__level3 {
|
|
2560
|
-
color: #
|
|
2571
|
+
color: #67697a;
|
|
2561
2572
|
font-family: "Nunito Sans";
|
|
2562
2573
|
font-size: 12px;
|
|
2563
2574
|
font-weight: 600;
|
|
@@ -2575,10 +2586,15 @@
|
|
|
2575
2586
|
color: #0c0d14;
|
|
2576
2587
|
font-family: "Nunito Sans";
|
|
2577
2588
|
font-size: 16px;
|
|
2578
|
-
font-weight:
|
|
2589
|
+
font-weight: 600;
|
|
2579
2590
|
margin-bottom: 4px;
|
|
2580
2591
|
white-space: nowrap;
|
|
2581
2592
|
}
|
|
2593
|
+
@media (max-width: 575.98px) {
|
|
2594
|
+
.ods-transaction-list-item__value {
|
|
2595
|
+
font-size: 14px;
|
|
2596
|
+
}
|
|
2597
|
+
}
|
|
2582
2598
|
.ods-transaction-list-item__value--positive {
|
|
2583
2599
|
color: #2da94f;
|
|
2584
2600
|
}
|
|
@@ -2598,6 +2614,18 @@
|
|
|
2598
2614
|
font-weight: 600;
|
|
2599
2615
|
}
|
|
2600
2616
|
|
|
2617
|
+
.ods-transaction-list-item__chevron {
|
|
2618
|
+
color: #aaadc0;
|
|
2619
|
+
margin-left: 12px;
|
|
2620
|
+
min-height: 20px;
|
|
2621
|
+
min-width: 20px;
|
|
2622
|
+
}
|
|
2623
|
+
@media (max-width: 575.98px) {
|
|
2624
|
+
.ods-transaction-list-item__chevron {
|
|
2625
|
+
margin-left: 8px;
|
|
2626
|
+
}
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2601
2629
|
.ods-modal__overlay {
|
|
2602
2630
|
background: rgba(57, 59, 71, 0.4);
|
|
2603
2631
|
bottom: 0;
|