@dialpad/dialtone-css 8.61.0 → 8.62.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/lib/build/less/utilities/typography.less +3 -1
- package/lib/dist/dialtone-default-theme.css +8 -2
- package/lib/dist/dialtone-default-theme.min.css +1 -1
- package/lib/dist/dialtone-docs.json +1 -1
- package/lib/dist/dialtone.css +8 -2
- package/lib/dist/dialtone.min.css +1 -1
- package/package.json +3 -3
|
@@ -425,14 +425,16 @@ ul {
|
|
|
425
425
|
// ----------------------------------------------------------------------------
|
|
426
426
|
.d-wb-normal { word-break: normal !important; }
|
|
427
427
|
.d-wb-break-all { word-break: break-all !important; }
|
|
428
|
+
.d-wb-break-word { word-break: break-word !important; }
|
|
428
429
|
.d-wb-keep-all { word-break: keep-all !important; }
|
|
429
430
|
.d-wb-unset { word-break: unset !important; }
|
|
430
431
|
|
|
431
432
|
// ============================================================================
|
|
432
433
|
// $$ WORD WRAP
|
|
433
434
|
// ----------------------------------------------------------------------------
|
|
434
|
-
.d-ww-break-word { word-wrap: break-word !important; }
|
|
435
435
|
.d-ww-normal { word-wrap: normal !important; }
|
|
436
|
+
.d-ww-break-word { word-wrap: break-word !important; }
|
|
437
|
+
.d-ww-anywhere { word-wrap: anywhere !important; }
|
|
436
438
|
.d-ww-initial { word-wrap: initial !important; }
|
|
437
439
|
.d-ww-inherit { word-wrap: inherit !important; }
|
|
438
440
|
|
|
@@ -8421,17 +8421,23 @@ ul {
|
|
|
8421
8421
|
.d-wb-break-all {
|
|
8422
8422
|
word-break: break-all !important;
|
|
8423
8423
|
}
|
|
8424
|
+
.d-wb-break-word {
|
|
8425
|
+
word-break: break-word !important;
|
|
8426
|
+
}
|
|
8424
8427
|
.d-wb-keep-all {
|
|
8425
8428
|
word-break: keep-all !important;
|
|
8426
8429
|
}
|
|
8427
8430
|
.d-wb-unset {
|
|
8428
8431
|
word-break: unset !important;
|
|
8429
8432
|
}
|
|
8433
|
+
.d-ww-normal {
|
|
8434
|
+
word-wrap: normal !important;
|
|
8435
|
+
}
|
|
8430
8436
|
.d-ww-break-word {
|
|
8431
8437
|
word-wrap: break-word !important;
|
|
8432
8438
|
}
|
|
8433
|
-
.d-ww-
|
|
8434
|
-
word-wrap:
|
|
8439
|
+
.d-ww-anywhere {
|
|
8440
|
+
word-wrap: anywhere !important;
|
|
8435
8441
|
}
|
|
8436
8442
|
.d-ww-initial {
|
|
8437
8443
|
word-wrap: initial !important;
|