@useblu/ocean-core 1.64.0 → 1.65.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 +26 -6
- 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.65.0](https://github.com/ocean-ds/ocean-web/compare/v1.64.0...v1.65.0) (2024-06-26)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- update link ([#1111](https://github.com/ocean-ds/ocean-web/issues/1111)) ([8aa0bf2](https://github.com/ocean-ds/ocean-web/commit/8aa0bf2c4ad0c82e5a4f0c66595d8883edea93c8))
|
|
11
|
+
|
|
6
12
|
# [1.64.0](https://github.com/ocean-ds/ocean-web/compare/v1.63.1...v1.64.0) (2024-06-26)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2383,42 +2383,62 @@
|
|
|
2383
2383
|
font-family: "Nunito Sans";
|
|
2384
2384
|
font-weight: 600;
|
|
2385
2385
|
line-height: 1;
|
|
2386
|
+
text-decoration: underline;
|
|
2387
|
+
}
|
|
2388
|
+
.ods-link--chevron svg {
|
|
2389
|
+
margin-left: 2px;
|
|
2390
|
+
}
|
|
2391
|
+
.ods-link--tiny {
|
|
2392
|
+
font-size: 12px;
|
|
2393
|
+
line-height: 12px;
|
|
2394
|
+
}
|
|
2395
|
+
.ods-link--tiny svg {
|
|
2396
|
+
height: 14px;
|
|
2397
|
+
margin-left: 0;
|
|
2398
|
+
width: 14px;
|
|
2399
|
+
}
|
|
2400
|
+
.ods-link--external svg {
|
|
2401
|
+
margin-left: 4px;
|
|
2386
2402
|
}
|
|
2387
2403
|
.ods-link--sm {
|
|
2388
2404
|
font-size: 14px;
|
|
2405
|
+
line-height: 14px;
|
|
2389
2406
|
}
|
|
2390
2407
|
.ods-link--md {
|
|
2391
2408
|
font-size: 16px;
|
|
2409
|
+
line-height: 16px;
|
|
2392
2410
|
}
|
|
2393
2411
|
.ods-link--primary {
|
|
2394
2412
|
color: #0025e0;
|
|
2395
2413
|
}
|
|
2396
|
-
.ods-link--primary:hover {
|
|
2414
|
+
.ods-link--primary:hover, .ods-link--primary:focus {
|
|
2397
2415
|
color: #5872f5;
|
|
2398
2416
|
text-decoration: underline;
|
|
2399
2417
|
}
|
|
2400
2418
|
.ods-link--inverse {
|
|
2401
2419
|
color: #6ae5e5;
|
|
2402
2420
|
}
|
|
2403
|
-
.ods-link--inverse:hover {
|
|
2421
|
+
.ods-link--inverse:hover, .ods-link--inverse:focus {
|
|
2404
2422
|
color: #b0f5f5;
|
|
2405
2423
|
text-decoration: underline;
|
|
2406
2424
|
}
|
|
2407
2425
|
.ods-link--neutral {
|
|
2408
2426
|
color: #67697a;
|
|
2409
2427
|
}
|
|
2410
|
-
.ods-link--neutral:hover {
|
|
2428
|
+
.ods-link--neutral:hover, .ods-link--neutral:focus {
|
|
2411
2429
|
color: #5872f5;
|
|
2412
2430
|
text-decoration: underline;
|
|
2413
2431
|
}
|
|
2432
|
+
.ods-link--disabled {
|
|
2433
|
+
color: #aaadc0;
|
|
2434
|
+
cursor: not-allowed;
|
|
2435
|
+
pointer-events: none;
|
|
2436
|
+
}
|
|
2414
2437
|
.ods-link--with-icon {
|
|
2415
2438
|
align-items: center;
|
|
2416
2439
|
display: flex;
|
|
2417
2440
|
flex-direction: row;
|
|
2418
2441
|
}
|
|
2419
|
-
.ods-link svg {
|
|
2420
|
-
margin-left: 4px;
|
|
2421
|
-
}
|
|
2422
2442
|
|
|
2423
2443
|
.ods-list {
|
|
2424
2444
|
background: white;
|