@florid-kit/components 0.10.10 → 0.10.11
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/index.js +18 -1
- package/index.mjs +18 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2311,6 +2311,10 @@
|
|
|
2311
2311
|
margin: 0;
|
|
2312
2312
|
border: 0 none;
|
|
2313
2313
|
box-sizing: content-box;
|
|
2314
|
+
|
|
2315
|
+
o-icon-button {
|
|
2316
|
+
margin-left: var(--spacing-xl);
|
|
2317
|
+
}
|
|
2314
2318
|
}
|
|
2315
2319
|
|
|
2316
2320
|
.tile.fullwidth {
|
|
@@ -2338,9 +2342,22 @@
|
|
|
2338
2342
|
line-height: var(--line-height-160);
|
|
2339
2343
|
letter-spacing: var(--letter-spacing-100);
|
|
2340
2344
|
text-align: left;
|
|
2345
|
+
max-height: 32px;
|
|
2346
|
+
overflow: hidden;
|
|
2347
|
+
text-overflow: ellipsis;
|
|
2348
|
+
display: -webkit-box;
|
|
2349
|
+
-webkit-line-clamp: 2;
|
|
2350
|
+
-webkit-box-orient: vertical;
|
|
2341
2351
|
|
|
2342
2352
|
+.details {
|
|
2343
|
-
padding-top: var(--spacing-s);
|
|
2353
|
+
padding-top: var(--spacing-s);
|
|
2354
|
+
overflow: hidden;
|
|
2355
|
+
text-overflow: ellipsis;
|
|
2356
|
+
display: -webkit-box;
|
|
2357
|
+
-webkit-line-clamp: 1;
|
|
2358
|
+
-webkit-box-orient: vertical;
|
|
2359
|
+
text-align: left;
|
|
2360
|
+
}
|
|
2344
2361
|
}
|
|
2345
2362
|
|
|
2346
2363
|
.info .details {
|
package/index.mjs
CHANGED
|
@@ -4318,6 +4318,10 @@ se.styles = f`
|
|
|
4318
4318
|
margin: 0;
|
|
4319
4319
|
border: 0 none;
|
|
4320
4320
|
box-sizing: content-box;
|
|
4321
|
+
|
|
4322
|
+
o-icon-button {
|
|
4323
|
+
margin-left: var(--spacing-xl);
|
|
4324
|
+
}
|
|
4321
4325
|
}
|
|
4322
4326
|
|
|
4323
4327
|
.tile.fullwidth {
|
|
@@ -4345,9 +4349,22 @@ se.styles = f`
|
|
|
4345
4349
|
line-height: var(--line-height-160);
|
|
4346
4350
|
letter-spacing: var(--letter-spacing-100);
|
|
4347
4351
|
text-align: left;
|
|
4352
|
+
max-height: 32px;
|
|
4353
|
+
overflow: hidden;
|
|
4354
|
+
text-overflow: ellipsis;
|
|
4355
|
+
display: -webkit-box;
|
|
4356
|
+
-webkit-line-clamp: 2;
|
|
4357
|
+
-webkit-box-orient: vertical;
|
|
4348
4358
|
|
|
4349
4359
|
+.details {
|
|
4350
|
-
padding-top: var(--spacing-s);
|
|
4360
|
+
padding-top: var(--spacing-s);
|
|
4361
|
+
overflow: hidden;
|
|
4362
|
+
text-overflow: ellipsis;
|
|
4363
|
+
display: -webkit-box;
|
|
4364
|
+
-webkit-line-clamp: 1;
|
|
4365
|
+
-webkit-box-orient: vertical;
|
|
4366
|
+
text-align: left;
|
|
4367
|
+
}
|
|
4351
4368
|
}
|
|
4352
4369
|
|
|
4353
4370
|
.info .details {
|