diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-06-25 19:15:03 -0700 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-06-25 19:15:03 -0700 |
commit | 38a1299975e867c637c73b9ee5439cff08d08e96 (patch) | |
tree | 74b71b5b241b6ac06707963acbaa64191fd5d7f3 /app/javascript/styles/components.scss | |
parent | 96e1f756790db735edd52d17fabb68a00ec89309 (diff) |
Stick images inside of CWs
Diffstat (limited to 'app/javascript/styles/components.scss')
-rw-r--r-- | app/javascript/styles/components.scss | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index 2a9236d5f..6064639cf 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -460,8 +460,7 @@ color: $primary-text-color; word-wrap: break-word; font-weight: 400; - overflow: hidden; - text-overflow: ellipsis; + overflow: visible; white-space: pre-wrap; .emojione { @@ -504,10 +503,10 @@ } } - .status__content__text { + .status__content__spoiler { display: none; - &.status__content__text--visible { + &.status__content__spoiler--visible { display: block; } } @@ -517,23 +516,20 @@ display: inline-block; border-radius: 2px; background: lighten($ui-base-color, 30%); - border: 1px lighten($ui-base-color, 30%) solid; + border: none; color: lighten($ui-base-color, 8%); font-weight: 500; font-size: 11px; padding: 0 5px; text-transform: uppercase; - line-height: 18px; + line-height: inherit; cursor: pointer; + vertical-align: bottom; &:hover { background: lighten($ui-base-color, 33%); text-decoration: none; } - - .status-collapsed & { - vertical-align: bottom; - } } .status__prepend-icon-wrapper { @@ -621,6 +617,9 @@ .status__content { height: 20px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } } } |