diff --git a/modules/system/assets/ui/docs/utilities.md b/modules/system/assets/ui/docs/utilities.md index ad6c2b571..cd453c32b 100644 --- a/modules/system/assets/ui/docs/utilities.md +++ b/modules/system/assets/ui/docs/utilities.md @@ -28,6 +28,7 @@ Utility styles are a collection of useful classes designed to reduce the need to ```css .t-ww { word-wrap: break-word; } +.t-nw { white-space: nowrap; } ``` ### Positioning diff --git a/modules/system/assets/ui/less/utilities.less b/modules/system/assets/ui/less/utilities.less index 7f860fbef..e01520671 100644 --- a/modules/system/assets/ui/less/utilities.less +++ b/modules/system/assets/ui/less/utilities.less @@ -33,6 +33,7 @@ // -------------------------------------------------- .t-ww { word-wrap: break-word; word-break: break-word; } +.t-nw { white-space: nowrap; } // // Positioning diff --git a/modules/system/assets/ui/storm.css b/modules/system/assets/ui/storm.css index 2f9900d80..a6e6d1b59 100644 --- a/modules/system/assets/ui/storm.css +++ b/modules/system/assets/ui/storm.css @@ -429,6 +429,7 @@ address{margin-bottom:20px;font-style:normal;line-height:1.42857143} .bg-s-s20{background-color:#ff7c09} .bg-a-s20{background-color:#1c9df3} .t-ww{word-wrap:break-word;word-break:break-word} +.t-nw{white-space:nowrap} .pos-r{position:relative !important} .pos-a{position:absolute !important} .pos-f{position:fixed !important}