From 3df7c1977fac3060f584a314cb02f0747ad67696 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Sat, 7 Apr 2018 16:29:50 +0300 Subject: [PATCH] fixes --- src/App.scss | 2 +- src/components/post_status_form/post_status_form.vue | 2 +- src/components/status/status.vue | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/App.scss b/src/App.scss index a7b56523..63815bf9 100644 --- a/src/App.scss +++ b/src/App.scss @@ -132,7 +132,7 @@ input, textarea, select { } } -i[class^=icon-] { +i[class*=icon-] { color: $fallback--icon; color: var(--icon, $fallback--icon) } diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index abf3b5b7..bce361db 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -149,7 +149,7 @@ line-height:16px; resize: none; overflow: hidden; - transition: min-height 200ms; + transition: min-height 200ms 100ms; min-height: 1px; box-sizing: content-box; } diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 14ffd922..152b0608 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -228,6 +228,12 @@ status-text-container { min-height: 1.4em; margin-bottom: 0.3em; + .links a i { + color: $fallback--link; + color: var(--link, $fallback--link); + } + + small { font-weight: lighter; }