Skip to content

Commit fdda947

Browse files
dkd-oerteldmh
authored andcommitted
[BUGFIX] add word wrap behavior for subnavigation items (#422)
* [BUGFIX] add word wrap behavior for subnavigation items * update css/less
1 parent 13c03d9 commit fdda947

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

Resources/Public/css/main.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Resources/Public/less/main.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8473,6 +8473,9 @@ div.awesomplete li[aria-selected="true"] mark {
84738473
border: 1px solid shade(@sub-navigation-border, 5%);
84748474
border-width: 0 0 1px;
84758475
font-size: 15px;
8476+
hyphens: auto;
8477+
// ie11 and edge hyphens polyfill
8478+
word-wrap: break-word;
84768479
}
84778480

84788481
@media (min-width: @screen-lg-min) {

felayout_t3kit/dev/styles/main/nav/subNavigation.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
border: 1px solid shade(@sub-navigation-border, 5%);
3131
border-width: 0 0 1px;
3232
font-size: 15px;
33+
hyphens: auto;
34+
// ie11 and edge hyphens polyfill
35+
word-wrap: break-word;
3336
}
3437

3538
@media (min-width: @screen-lg-min) {

0 commit comments

Comments
 (0)