 Issue 29587584:
  Issue 5635 - Implement website-default navbar component  (Closed) 
  Base URL: https://hg.adblockplus.org/website-defaults
    
  
    Issue 29587584:
  Issue 5635 - Implement website-default navbar component  (Closed) 
  Base URL: https://hg.adblockplus.org/website-defaults| Index: static/scss/_utilities.scss | 
| =================================================================== | 
| --- a/static/scss/_utilities.scss | 
| +++ b/static/scss/_utilities.scss | 
| @@ -58,16 +58,24 @@ | 
| .text-center { text-align: center; } | 
| .text-left { text-align: left; } | 
| .text-right { text-align: right; } | 
| .text-start { text-align: left; } | 
| [dir="rtl"] .text-start { text-align: right; } | 
| .text-end { text-align: right; } | 
| [dir="rtl"] .text-end { text-align: left; } | 
| +/* Floats | 
| 
juliandoucette
2017/11/02 13:31:23
These don't seem to be used.
 | 
| + ******************************************************************************/ | 
| + | 
| +.float-start { float: left; } | 
| +[dir="rtl"] .float-start { float: right; } | 
| +.float-end { float: right; } | 
| +[dir="rtl"] .float-end { float: left; } | 
| + | 
| /* Clearfix | 
| ******************************************************************************/ | 
| .clearfix:after, | 
| .clearfix:before | 
| { | 
| display: table; | 
| content: " "; |