diff options
author | Luka Matijević <lumatijev@gmail.com> | 2018-03-07 09:42:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-07 09:42:35 +0100 |
commit | 9a1b1a5bedbe44827de109731a3c3b1a07790d3e (patch) | |
tree | 3e33b4e51bf74c9145e1b22d264b875d5039b76b /client/components/swimlanes/swimlanes.styl | |
parent | 990af4e5c23fe1d7f9596ed14ea731133730a7fa (diff) | |
download | wekan-9a1b1a5bedbe44827de109731a3c3b1a07790d3e.tar.gz wekan-9a1b1a5bedbe44827de109731a3c3b1a07790d3e.tar.bz2 wekan-9a1b1a5bedbe44827de109731a3c3b1a07790d3e.zip |
Fix swimlane header rotation on Google Chrome
After this change both Firefox 58 and Google Chrome 64 have properly rotated swimlane header.
Diffstat (limited to 'client/components/swimlanes/swimlanes.styl')
-rw-r--r-- | client/components/swimlanes/swimlanes.styl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/components/swimlanes/swimlanes.styl b/client/components/swimlanes/swimlanes.styl index 99edd414..29054d32 100644 --- a/client/components/swimlanes/swimlanes.styl +++ b/client/components/swimlanes/swimlanes.styl @@ -32,7 +32,8 @@ border-bottom: 1px solid #CCC .swimlane-header - writing-mode: sideways-lr; + writing-mode: vertical-rl; + transform: rotate(180deg); font-size: 14px; line-height: 50px; margin-top: 50px; |