Browse Source

Add text wrapping to breadcrumbs

Denis K 8 years ago
parent
commit
1e1e98f19d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      jet/static/jet/css/_breadcrumbs.scss

+ 3 - 1
jet/static/jet/css/_breadcrumbs.scss

@@ -10,10 +10,12 @@ div.breadcrumbs {
   color: $top-text-color;
   padding: 20px 175px + 20px + 20px 20px 20px;
   visibility: hidden;
+  white-space: nowrap;
+  text-overflow: ellipsis;
+  overflow: hidden;
 
   @include for-mobile {
     padding: 20px 20px 10px 20px;
-    white-space: nowrap;
     overflow: auto;
   }