diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-05-23 22:23:27 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-05-23 22:23:27 +0200 |
commit | 40b605f7d897db6eb2697be1748741221378e71c (patch) | |
tree | 43377344c6a2b1f25746d0567a39fb1446a6a91a /client/components/lists/main.styl | |
parent | 9c2a3213eb47956aaf116209d070ccac5dcddca6 (diff) | |
download | wekan-40b605f7d897db6eb2697be1748741221378e71c.tar.gz wekan-40b605f7d897db6eb2697be1748741221378e71c.tar.bz2 wekan-40b605f7d897db6eb2697be1748741221378e71c.zip |
Hide the card composer link while a card is being dragged
Diffstat (limited to 'client/components/lists/main.styl')
-rw-r--r-- | client/components/lists/main.styl | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/client/components/lists/main.styl b/client/components/lists/main.styl index 18484174..ce408990 100644 --- a/client/components/lists/main.styl +++ b/client/components/lists/main.styl @@ -99,27 +99,31 @@ height: 4px .open-card-composer - border-top-left-radius: 0 - border-top-right-radius: 0 - border-bottom-right-radius: 3px - border-bottom-left-radius: 3px + border-radius: 2px color: #8c8c8c display: block - // flex: 0 0 auto - margin: 2px -3px -3px padding: 7px 10px position: relative text-decoration: none + animation: fadeIn 0.2s + + i.fa + margin-right: 7px &:hover - background: #c3c3c3 + background: white color: #222 - text-decoration: underline - + box-shadow: 0 1px 2px rgba(0,0,0,.2) &::selection background: transparent +@keyframes fadeIn + from + opacity: 0 + to + opacity: 1 + .list.placeholder background-color: rgba(0, 0, 0, .2) border-color: transparent |