Add primary/secondary line classes to select list

This will be a style that can be used by extending
classes to provide two lines that don't wrap with
color and padding.

This is initially used by symbols view and fuzzy finder.
This commit is contained in:
Kevin Sawicki
2013-05-01 17:03:20 -07:00
parent 71e73750e2
commit 7e15a343f3
6 changed files with 27 additions and 24 deletions

View File

@@ -19,6 +19,16 @@
li {
padding: 10px;
display: block;
&.two-lines {
padding: 5px 10px 5px 10px;
}
.primary-line, .secondary-line {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
li:last-child {