diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-06-12 13:59:39 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-06-12 17:48:15 +0200 |
commit | c8945679872a0708eb67a477a99a65d508c84cb0 (patch) | |
tree | 5cf9f2cc842f891451f7bc247b5f0833c1ab39e7 /client/components/activities/activities.styl | |
parent | 216887490e3be0ba141484afc11d37475e91562d (diff) | |
download | wekan-c8945679872a0708eb67a477a99a65d508c84cb0.tar.gz wekan-c8945679872a0708eb67a477a99a65d508c84cb0.tar.bz2 wekan-c8945679872a0708eb67a477a99a65d508c84cb0.zip |
Work on the card activities and comments
This commit also introduces a new CSSEvents object that is used to
abstract vendor specifics events related to CSS transitions and
animations.
Fixes #183.
Fixes #179.
Diffstat (limited to 'client/components/activities/activities.styl')
-rw-r--r-- | client/components/activities/activities.styl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/client/components/activities/activities.styl b/client/components/activities/activities.styl new file mode 100644 index 00000000..de2b796d --- /dev/null +++ b/client/components/activities/activities.styl @@ -0,0 +1,28 @@ +.activities + clear: both + + .activity + margin: 6px 0 + display: flex + + .member + width: 24px + height: @width + + .activity-desc + flex: 1 + align-self: center + margin: 0 + + .activity-comment + display: block + border-radius: 3px + background: white + text-decoration: none + box-shadow: 0 1px 2px rgba(0,0,0,.2) + margin-top: 5px + padding: 5px + + .activity-meta + font-size: 0.8em + color: darken(white, 40%) |