@useblu/ocean-core 1.75.0 → 1.77.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.77.0](https://github.com/ocean-ds/ocean-web/compare/v1.76.0...v1.77.0) (2025-01-30)
7
+
8
+ ### Features
9
+
10
+ - adjust style ([#1130](https://github.com/ocean-ds/ocean-web/issues/1130)) ([ab00ac9](https://github.com/ocean-ds/ocean-web/commit/ab00ac997868675a469b626a8f62194f0b516bc1))
11
+
12
+ # [1.76.0](https://github.com/ocean-ds/ocean-web/compare/v1.75.0...v1.76.0) (2025-01-30)
13
+
14
+ ### Features
15
+
16
+ - create card group ([#1129](https://github.com/ocean-ds/ocean-web/issues/1129)) ([7d01634](https://github.com/ocean-ds/ocean-web/commit/7d01634c691d96a265e85ea108d7d36399a8ca8f))
17
+
6
18
  # [1.75.0](https://github.com/ocean-ds/ocean-web/compare/v1.74.0...v1.75.0) (2025-01-28)
7
19
 
8
20
  ### Features
package/ocean.css CHANGED
@@ -5368,4 +5368,57 @@
5368
5368
  width: 100%;
5369
5369
  }
5370
5370
  }
5371
+ .ods-card-group {
5372
+ border: 1px solid #e0e2ee;
5373
+ border-radius: 8px;
5374
+ display: flex;
5375
+ flex-direction: column;
5376
+ height: 100%;
5377
+ justify-content: flex-end;
5378
+ width: 100%;
5379
+ }
5380
+ .ods-card-group--header {
5381
+ border: hidden;
5382
+ border-bottom: 1px solid #e0e2ee;
5383
+ border-radius: 0;
5384
+ }
5385
+ .ods-card-group__header {
5386
+ align-items: center;
5387
+ display: flex;
5388
+ gap: 16px;
5389
+ height: 100%;
5390
+ justify-content: space-between;
5391
+ padding: 16px;
5392
+ }
5393
+ .ods-card-group__header--content {
5394
+ display: flex;
5395
+ flex-direction: column;
5396
+ gap: 4px;
5397
+ }
5398
+ .ods-card-group__action {
5399
+ align-items: center;
5400
+ background-color: white;
5401
+ border: hidden;
5402
+ border-radius: 0 0 7px 7px;
5403
+ box-sizing: border-box;
5404
+ color: #0025e0;
5405
+ display: flex;
5406
+ gap: 16px;
5407
+ justify-content: space-between;
5408
+ padding: 14px 8px 14px 16px;
5409
+ width: 100%;
5410
+ }
5411
+ .ods-card-group__action--label {
5412
+ font-family: "Nunito Sans";
5413
+ font-size: 14px;
5414
+ font-weight: 700;
5415
+ line-height: 15.4px;
5416
+ }
5417
+ .ods-card-group__action:hover, .ods-card-group__action:focus {
5418
+ background-color: #f3f5fe;
5419
+ cursor: pointer;
5420
+ }
5421
+ .ods-card-group__action:active {
5422
+ background-color: #e0e2ee;
5423
+ }
5371
5424
  /*# sourceMappingURL=ocean.css.map */