This commit is contained in:
John O'Nolan 2015-05-13 11:45:32 +01:00 committed by Hannah Wolfe
parent 6d8989315a
commit b93d9a590e
3 changed files with 7 additions and 19 deletions

View File

@ -42,7 +42,6 @@
@import "components/badges";
@import "components/popovers";
@import "components/settings-menu";
@import "components/url-preview";
//

View File

@ -177,6 +177,13 @@
}
}//.settings-menu-content
.ghost-url-preview {
width: 98%; // Preview never wider than input
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
//
// Content Cover

View File

@ -1,18 +0,0 @@
// ------------------------------------------------------------
// URL Preview
//
// Styles for the {{url-preview}} component
//
// * Overflow Ellipsis
// ------------------------------------------------------------
//
// Overflow Ellipsis
// --------------------------------------------------
.ghost-url-preview {
width: 98%; // Makes sure the preview isnt wider than the input
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}