Ghost/core/client/app/styles/components/url-preview.scss
2015-03-11 12:37:41 -06:00

18 lines
462 B
SCSS

// ------------------------------------------------------------
// 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;
}