Skip to content

Commit

Permalink
Don't wrap long pocket names in left menu (pocket list).
Browse files Browse the repository at this point in the history
Issue caused by pocket names that can word-wrap, like

name too long name too long name too long name too long

Fixes #220.
  • Loading branch information
veox committed Jan 28, 2015
1 parent f3f93c9 commit 2c5bc23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/css/app.css
Expand Up @@ -5083,7 +5083,8 @@ li.colorhead h6 {

/* ----------------------- */
ul.off-canvas-list {
overflow-x: hidden; }
overflow-x: hidden;
white-space: nowrap; }
ul.off-canvas-list li a.cornerbutton {
color: rgba(30, 170, 80, 0.9);
padding: 0rem 0.3rem;
Expand Down
1 change: 1 addition & 0 deletions src/sass/app.scss
Expand Up @@ -288,6 +288,7 @@ li.colorhead h6 { color: white; margin: 0; }
/* ----------------------- */
ul.off-canvas-list {
overflow-x: hidden;
white-space: nowrap;
li a:hover { }
li a.cornerbutton {
color: $primary-color-dark;
Expand Down

0 comments on commit 2c5bc23

Please sign in to comment.