diff options
author | Ondřej Hruška <ondra@ondrovo.com> | 2017-07-10 09:44:17 +0200 |
---|---|---|
committer | beatrix <beatrix.bitrot@gmail.com> | 2017-07-10 09:29:20 -0400 |
commit | 945c5812d37f6bc44c3d820ed3506d5566a9208d (patch) | |
tree | 79686f5f862c601a5fac5242defeb76bec07dc93 /app/javascript/styles | |
parent | 667b567606959cd89d913b2cf42a2651525d645a (diff) |
Added extra clickable area in status gutter
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/components.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index ceb7b05f6..ce1e69623 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -421,6 +421,19 @@ cursor: pointer; } +// Extra clickable area in the status gutter +@media screen and (min-width: 1024px) { + .status__content--with-action > div::after { + content: ''; + display: block; + width: 68px; + height: calc(100% + 10px); + position: absolute; + left: -68px; + bottom: -40px; + } +} + .status__content, .reply-indicator__content { position: relative; |