@useblu/ocean-core 1.73.0 → 1.76.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 +52 -1
- 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.76.0](https://github.com/ocean-ds/ocean-web/compare/v1.75.0...v1.76.0) (2025-01-30)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- create card group ([#1129](https://github.com/ocean-ds/ocean-web/issues/1129)) ([7d01634](https://github.com/ocean-ds/ocean-web/commit/7d01634c691d96a265e85ea108d7d36399a8ca8f))
|
|
11
|
+
|
|
12
|
+
# [1.75.0](https://github.com/ocean-ds/ocean-web/compare/v1.74.0...v1.75.0) (2025-01-28)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- update button ([#1128](https://github.com/ocean-ds/ocean-web/issues/1128)) ([cade258](https://github.com/ocean-ds/ocean-web/commit/cade258f64c4a9a3dcaec1b6e80e5af3c027d6e4))
|
|
17
|
+
|
|
6
18
|
# [1.73.0](https://github.com/ocean-ds/ocean-web/compare/v1.72.0...v1.73.0) (2024-12-26)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2300,10 +2300,13 @@
|
|
|
2300
2300
|
visibility: hidden;
|
|
2301
2301
|
}
|
|
2302
2302
|
.ods-btn:disabled, .ods-btn:disabled .ods-btn:hover {
|
|
2303
|
-
background-color: #
|
|
2303
|
+
background-color: #f3f5fe;
|
|
2304
2304
|
color: #aaadc0;
|
|
2305
2305
|
cursor: not-allowed;
|
|
2306
2306
|
}
|
|
2307
|
+
.ods-btn--text:disabled, .ods-btn--text-critical:disabled, .ods-btn--text-tertiary:disabled, .ods-btn--text-tertiary-critical:disabled {
|
|
2308
|
+
background-color: transparent;
|
|
2309
|
+
}
|
|
2307
2310
|
|
|
2308
2311
|
.ods-carousel.columns-5, .ods-carousel.columns-4, .ods-carousel.columns-3, .ods-carousel.columns-2 {
|
|
2309
2312
|
overflow: hidden;
|
|
@@ -5365,4 +5368,52 @@
|
|
|
5365
5368
|
width: 100%;
|
|
5366
5369
|
}
|
|
5367
5370
|
}
|
|
5371
|
+
.ods-card-group {
|
|
5372
|
+
border: 1px solid #e0e2ee;
|
|
5373
|
+
border-radius: 8px;
|
|
5374
|
+
width: 100%;
|
|
5375
|
+
}
|
|
5376
|
+
.ods-card-group--header {
|
|
5377
|
+
border: hidden;
|
|
5378
|
+
border-bottom: 1px solid #e0e2ee;
|
|
5379
|
+
border-radius: 0;
|
|
5380
|
+
}
|
|
5381
|
+
.ods-card-group__header {
|
|
5382
|
+
align-items: center;
|
|
5383
|
+
display: flex;
|
|
5384
|
+
gap: 16px;
|
|
5385
|
+
justify-content: space-between;
|
|
5386
|
+
padding: 16px;
|
|
5387
|
+
}
|
|
5388
|
+
.ods-card-group__header--content {
|
|
5389
|
+
display: flex;
|
|
5390
|
+
flex-direction: column;
|
|
5391
|
+
gap: 4px;
|
|
5392
|
+
}
|
|
5393
|
+
.ods-card-group__action {
|
|
5394
|
+
align-items: center;
|
|
5395
|
+
background-color: white;
|
|
5396
|
+
border: hidden;
|
|
5397
|
+
border-radius: 0 0 7px 7px;
|
|
5398
|
+
box-sizing: border-box;
|
|
5399
|
+
color: #0025e0;
|
|
5400
|
+
display: flex;
|
|
5401
|
+
gap: 16px;
|
|
5402
|
+
justify-content: space-between;
|
|
5403
|
+
padding: 14px 8px 14px 16px;
|
|
5404
|
+
width: 100%;
|
|
5405
|
+
}
|
|
5406
|
+
.ods-card-group__action--label {
|
|
5407
|
+
font-family: "Nunito Sans";
|
|
5408
|
+
font-size: 14px;
|
|
5409
|
+
font-weight: 700;
|
|
5410
|
+
line-height: 15.4px;
|
|
5411
|
+
}
|
|
5412
|
+
.ods-card-group__action:hover, .ods-card-group__action:focus {
|
|
5413
|
+
background-color: #f3f5fe;
|
|
5414
|
+
cursor: pointer;
|
|
5415
|
+
}
|
|
5416
|
+
.ods-card-group__action:active {
|
|
5417
|
+
background-color: #e0e2ee;
|
|
5418
|
+
}
|
|
5368
5419
|
/*# sourceMappingURL=ocean.css.map */
|