diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-24 17:05:44 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-24 17:05:44 +0100 |
commit | 80cefd5b3cd9c8efa435f684a33fe1562696b74a (patch) | |
tree | dd3eab3219fb7c4757c8d67ae5178b43f8ec075b /app/assets/stylesheets | |
parent | b06a375ee49e80279b1a9529d1ca892548e55fc7 (diff) |
Fix #204, fix #515 - URL truncating is now a style so copypasting is not
affected, replaced onClick handler with onMouseUp/Down to detect text selection not trigger onClick handler then
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/components.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index e1710580c..4a3a7df5f 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -60,6 +60,17 @@ } } +.invisible { + font-size: 0; + line-height: 0; +} + +.ellipsis { + &:after { + content: "…"; + } +} + .lightbox .icon-button { color: $color1; } |