@useblu/ocean-core 1.48.1 → 1.50.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 +100 -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.50.0](https://github.com/ocean-ds/ocean-web/compare/v1.49.0...v1.50.0) (2023-09-27)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- create card list item ([#1082](https://github.com/ocean-ds/ocean-web/issues/1082)) ([21f665b](https://github.com/ocean-ds/ocean-web/commit/21f665bc6e793bfc672687adb028e61f57a955c4))
|
|
11
|
+
|
|
12
|
+
# [1.49.0](https://github.com/ocean-ds/ocean-web/compare/v1.48.1...v1.49.0) (2023-09-01)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- center chevron with content ([#1081](https://github.com/ocean-ds/ocean-web/issues/1081)) ([0f1370b](https://github.com/ocean-ds/ocean-web/commit/0f1370b3de8cc6dff7b9499620428c0685771827))
|
|
17
|
+
|
|
6
18
|
## [1.48.1](https://github.com/ocean-ds/ocean-web/compare/v1.48.0...v1.48.1) (2023-08-30)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -3712,7 +3712,7 @@
|
|
|
3712
3712
|
.ods-breadcrumb svg {
|
|
3713
3713
|
color: #b6b9cc;
|
|
3714
3714
|
}
|
|
3715
|
-
.ods-
|
|
3715
|
+
.ods-breadcrumb__item {
|
|
3716
3716
|
align-items: center;
|
|
3717
3717
|
display: flex;
|
|
3718
3718
|
gap: 4px;
|
|
@@ -4214,4 +4214,103 @@
|
|
|
4214
4214
|
height: 100%;
|
|
4215
4215
|
width: 100%;
|
|
4216
4216
|
}
|
|
4217
|
+
|
|
4218
|
+
.ods-card-list-item {
|
|
4219
|
+
align-items: center;
|
|
4220
|
+
border: 1px solid #ebecf5;
|
|
4221
|
+
border-radius: 8px;
|
|
4222
|
+
box-sizing: border-box;
|
|
4223
|
+
cursor: pointer;
|
|
4224
|
+
display: flex;
|
|
4225
|
+
flex-direction: row;
|
|
4226
|
+
gap: 16px;
|
|
4227
|
+
padding: 16px;
|
|
4228
|
+
transition: 200ms;
|
|
4229
|
+
width: 320px;
|
|
4230
|
+
}
|
|
4231
|
+
.ods-card-list-item__leading-icon {
|
|
4232
|
+
background-color: #f7f9ff;
|
|
4233
|
+
border-radius: 50%;
|
|
4234
|
+
box-sizing: content-box;
|
|
4235
|
+
color: #5872f5;
|
|
4236
|
+
height: 24px;
|
|
4237
|
+
padding: 8px;
|
|
4238
|
+
transition: 200ms;
|
|
4239
|
+
width: 24px;
|
|
4240
|
+
}
|
|
4241
|
+
.ods-card-list-item__leading-icon svg {
|
|
4242
|
+
height: 24px;
|
|
4243
|
+
width: 24px;
|
|
4244
|
+
}
|
|
4245
|
+
.ods-card-list-item__content {
|
|
4246
|
+
display: flex;
|
|
4247
|
+
flex-direction: column;
|
|
4248
|
+
width: 100%;
|
|
4249
|
+
}
|
|
4250
|
+
.ods-card-list-item__content__title {
|
|
4251
|
+
color: #0c0d14;
|
|
4252
|
+
font-family: "Nunito Sans";
|
|
4253
|
+
font-size: 16px;
|
|
4254
|
+
font-weight: 400;
|
|
4255
|
+
line-height: 1.5;
|
|
4256
|
+
}
|
|
4257
|
+
.ods-card-list-item__content__description {
|
|
4258
|
+
color: #67697a;
|
|
4259
|
+
font-family: "Nunito Sans";
|
|
4260
|
+
font-size: 14px;
|
|
4261
|
+
font-weight: 400;
|
|
4262
|
+
line-height: 1.5;
|
|
4263
|
+
}
|
|
4264
|
+
.ods-card-list-item__content__caption {
|
|
4265
|
+
color: #67697a;
|
|
4266
|
+
font-family: "Nunito Sans";
|
|
4267
|
+
font-size: 12px;
|
|
4268
|
+
font-weight: 400;
|
|
4269
|
+
line-height: 1.5;
|
|
4270
|
+
margin-top: 4px;
|
|
4271
|
+
}
|
|
4272
|
+
.ods-card-list-item__action {
|
|
4273
|
+
background-color: transparent;
|
|
4274
|
+
color: #b6b9cc;
|
|
4275
|
+
height: 20px;
|
|
4276
|
+
width: 20px;
|
|
4277
|
+
}
|
|
4278
|
+
.ods-card-list-item__action:hover {
|
|
4279
|
+
background-color: transparent;
|
|
4280
|
+
}
|
|
4281
|
+
.ods-card-list-item__action svg {
|
|
4282
|
+
height: 20px;
|
|
4283
|
+
width: 20px;
|
|
4284
|
+
}
|
|
4285
|
+
.ods-card-list-item:hover:not(.ods-card-list-item--disabled) {
|
|
4286
|
+
background-color: #f7f9ff;
|
|
4287
|
+
}
|
|
4288
|
+
.ods-card-list-item:hover:not(.ods-card-list-item--disabled):not(.ods-card-list-item--size-small) .ods-card-list-item__leading-icon {
|
|
4289
|
+
background-color: rgba(184, 195, 255, 0.16);
|
|
4290
|
+
}
|
|
4291
|
+
.ods-card-list-item--disabled {
|
|
4292
|
+
cursor: not-allowed;
|
|
4293
|
+
}
|
|
4294
|
+
.ods-card-list-item--disabled .ods-card-list-item__content__title,
|
|
4295
|
+
.ods-card-list-item--disabled .ods-card-list-item__content__description,
|
|
4296
|
+
.ods-card-list-item--disabled .ods-card-list-item__content__caption {
|
|
4297
|
+
color: #b6b9cc;
|
|
4298
|
+
}
|
|
4299
|
+
.ods-card-list-item--disabled .ods-card-list-item__leading-icon,
|
|
4300
|
+
.ods-card-list-item--disabled .ods-card-list-item__action {
|
|
4301
|
+
color: #d8dae8;
|
|
4302
|
+
}
|
|
4303
|
+
.ods-card-list-item--size-small .ods-card-list-item__content__title {
|
|
4304
|
+
font-size: 14px;
|
|
4305
|
+
}
|
|
4306
|
+
.ods-card-list-item--size-small .ods-card-list-item__content__description {
|
|
4307
|
+
font-size: 12px;
|
|
4308
|
+
}
|
|
4309
|
+
.ods-card-list-item--size-small .ods-card-list-item__leading-icon {
|
|
4310
|
+
background-color: transparent;
|
|
4311
|
+
padding: 0;
|
|
4312
|
+
}
|
|
4313
|
+
.ods-card-list-item--full-width {
|
|
4314
|
+
width: 100%;
|
|
4315
|
+
}
|
|
4217
4316
|
/*# sourceMappingURL=ocean.css.map */
|