diff --git a/core/client/app/styles/app.scss b/core/client/app/styles/app.scss index bd4f35932b..79b38062fa 100644 --- a/core/client/app/styles/app.scss +++ b/core/client/app/styles/app.scss @@ -42,7 +42,6 @@ @import "components/badges"; @import "components/popovers"; @import "components/settings-menu"; -@import "components/url-preview"; // diff --git a/core/client/app/styles/components/settings-menu.scss b/core/client/app/styles/components/settings-menu.scss index 45d578dbb4..9082bcf642 100644 --- a/core/client/app/styles/components/settings-menu.scss +++ b/core/client/app/styles/components/settings-menu.scss @@ -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 diff --git a/core/client/app/styles/components/url-preview.scss b/core/client/app/styles/components/url-preview.scss deleted file mode 100644 index e46c9b7bc5..0000000000 --- a/core/client/app/styles/components/url-preview.scss +++ /dev/null @@ -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; -} \ No newline at end of file