@useblu/ocean-core 1.50.0 → 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 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.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
+
12
+ ## [1.50.1](https://github.com/ocean-ds/ocean-web/compare/v1.50.0...v1.50.1) (2023-10-02)
13
+
14
+ ### Bug Fixes
15
+
16
+ - remove input jump on hover ([#1084](https://github.com/ocean-ds/ocean-web/issues/1084)) ([99ce61c](https://github.com/ocean-ds/ocean-web/commit/99ce61cb6364e26cf4753561dd186d7604fa98ad))
17
+
6
18
  # [1.50.0](https://github.com/ocean-ds/ocean-web/compare/v1.49.0...v1.50.0) (2023-09-27)
7
19
 
8
20
  ### Features
package/ocean.css CHANGED
@@ -1325,11 +1325,12 @@
1325
1325
  background-color: white;
1326
1326
  border: 1px solid #d8dae8;
1327
1327
  border-radius: 4px;
1328
+ box-sizing: border-box;
1328
1329
  display: flex;
1329
- height: 46px;
1330
+ height: 48px;
1330
1331
  }
1331
1332
  .ods-input input {
1332
- border: 0;
1333
+ border: 1px solid transparent;
1333
1334
  border-radius: 4px;
1334
1335
  box-sizing: border-box;
1335
1336
  color: #393b47;
@@ -1361,6 +1362,9 @@
1361
1362
  border-color: #5872f5;
1362
1363
  border-width: 2px;
1363
1364
  }
1365
+ .ods-input:hover input, .ods-input:focus input, .ods-input:active input, .ods-input:focus-within input {
1366
+ border-width: 0;
1367
+ }
1364
1368
  .ods-input--filled {
1365
1369
  border: 1px solid #b8c3ff;
1366
1370
  }
@@ -2413,8 +2417,8 @@
2413
2417
  .ods-transaction-list-item__content {
2414
2418
  align-items: center;
2415
2419
  box-sizing: border-box;
2416
- -moz-column-gap: 16px;
2417
- column-gap: 16px;
2420
+ -moz-column-gap: 8px;
2421
+ column-gap: 8px;
2418
2422
  cursor: pointer;
2419
2423
  display: flex;
2420
2424
  justify-content: center;
@@ -2428,6 +2432,7 @@
2428
2432
  }
2429
2433
 
2430
2434
  .ods-transaction-list-item__information {
2435
+ overflow: hidden;
2431
2436
  width: 100%;
2432
2437
  }
2433
2438
 
@@ -2436,7 +2441,7 @@
2436
2441
  }
2437
2442
 
2438
2443
  .ods-transaction-list-item__level1 {
2439
- color: #393b47;
2444
+ color: #0c0d14;
2440
2445
  font-family: "Nunito Sans";
2441
2446
  font-size: 16px;
2442
2447
  font-weight: 600;
@@ -2444,18 +2449,30 @@
2444
2449
  }
2445
2450
 
2446
2451
  .ods-transaction-list-item__level2 {
2447
- -webkit-box-orient: vertical;
2448
2452
  color: #67697a;
2449
- display: box;
2450
2453
  font-family: "Nunito Sans";
2451
- font-size: 15px;
2454
+ font-size: 14px;
2452
2455
  font-weight: 400;
2453
- -webkit-line-clamp: 2;
2454
2456
  line-height: 15px;
2455
2457
  margin-bottom: 8px;
2456
- max-height: 30px;
2458
+ }
2459
+
2460
+ .ods-transaction-list-item__level1,
2461
+ .ods-transaction-list-item__level2 {
2457
2462
  overflow: hidden;
2458
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
+ }
2459
2476
  }
2460
2477
 
2461
2478
  .ods-transaction-list-item__level3 {
@@ -2474,7 +2491,7 @@
2474
2491
  }
2475
2492
 
2476
2493
  .ods-transaction-list-item__value {
2477
- color: #393b47;
2494
+ color: #0c0d14;
2478
2495
  font-family: "Nunito Sans";
2479
2496
  font-size: 16px;
2480
2497
  font-weight: 700;
@@ -3724,6 +3741,7 @@
3724
3741
  font-size: 12px;
3725
3742
  font-weight: 600;
3726
3743
  line-height: 1;
3744
+ text-decoration: none;
3727
3745
  transition: 0.3s hover;
3728
3746
  }
3729
3747
  .ods-breadcrumb span:last-child,