From ea8a700796ced7fd4be3d1c65abf34e7c65413b0 Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Thu, 1 Jun 2017 01:02:04 +0300 Subject: Move a bunch of status-related styles from App to status component, alter status header layout for better user experience hopefully, make status actions placing more consistent, adjust margins. --- src/App.scss | 59 ----------------------------------------------------------- 1 file changed, 59 deletions(-) (limited to 'src/App.scss') diff --git a/src/App.scss b/src/App.scss index 0a7e1ce5..3db81537 100644 --- a/src/App.scss +++ b/src/App.scss @@ -134,11 +134,6 @@ main-router { background-color: rgba(0,0,0,0.1); } -.media-body { - flex: 1; - padding-left: 0.5em; -} - .container > * { min-width: 0px; } @@ -147,60 +142,6 @@ main-router { color: grey; } -.status-actions { - width: 50%; - display: flex; - - div, favorite-button { - flex: 1; - } -} - -status-text-container { - display: block; -} - -.status-el { - line-height: 18px; - - .notify { - .avatar { - border-width: 3px; - border-style: solid; - } - } - - .media-left { - img { - margin-top: 0.2em; - float: right; - margin-right: 0.3em; - border-radius: 5px; - } - } - - .retweet-info { - padding: 0.7em 0 0 0.6em; - - .media-left { - display: flex; - - i { - align-self: center; - text-align: right; - flex: 1; - padding-right: 0.3em; - } - } - } - - .media-heading { - small { - font-weight: lighter; - } - margin-bottom: 0.3em; - } -} nav { z-index: 1000; } -- cgit v1.2.3-70-g09d2 From bac1d3bd57fb0c04b32c31a048ccf58a3dee6be0 Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Sat, 3 Jun 2017 23:42:54 +0300 Subject: Move user-finder into navbar and hide it behind a toggle button, update fontello icons with user-plus and menu. --- src/App.scss | 2 ++ src/App.vue | 3 ++- src/components/user_finder/user_finder.js | 6 +++++- src/components/user_finder/user_finder.vue | 20 +++++++++++++++----- static/font/config.json | 12 ++++++++++++ static/font/css/fontello-codes.css | 4 +++- static/font/css/fontello-embedded.css | 16 +++++++++------- static/font/css/fontello-ie7-codes.css | 4 +++- static/font/css/fontello-ie7.css | 4 +++- static/font/css/fontello.css | 18 ++++++++++-------- static/font/demo.html | 14 +++++++++----- static/font/font/fontello.eot | Bin 8428 -> 9052 bytes static/font/font/fontello.svg | 4 ++++ static/font/font/fontello.ttf | Bin 8260 -> 8884 bytes static/font/font/fontello.woff | Bin 5124 -> 5524 bytes static/font/font/fontello.woff2 | Bin 4384 -> 4720 bytes 16 files changed, 77 insertions(+), 30 deletions(-) (limited to 'src/App.scss') diff --git a/src/App.scss b/src/App.scss index 3db81537..a5f190cb 100644 --- a/src/App.scss +++ b/src/App.scss @@ -52,6 +52,8 @@ button{ .item { flex: 1; + line-height: 21px; + height: 21px; } .gaps > .item { diff --git a/src/App.vue b/src/App.vue index d0c6671e..d77c34bb 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,6 +6,7 @@ {{sitename}}
+
@@ -19,7 +20,7 @@ diff --git a/static/font/font/fontello.eot b/static/font/font/fontello.eot index 4050fa3b..4573d823 100644 Binary files a/static/font/font/fontello.eot and b/static/font/font/fontello.eot differ diff --git a/static/font/font/fontello.svg b/static/font/font/fontello.svg index f1e8b9fc..98105a87 100644 --- a/static/font/font/fontello.svg +++ b/static/font/font/fontello.svg @@ -26,9 +26,13 @@ + + + + \ No newline at end of file diff --git a/static/font/font/fontello.ttf b/static/font/font/fontello.ttf index bec32f07..c3bfb92a 100644 Binary files a/static/font/font/fontello.ttf and b/static/font/font/fontello.ttf differ diff --git a/static/font/font/fontello.woff b/static/font/font/fontello.woff index 245e1d2f..dced1f8c 100644 Binary files a/static/font/font/fontello.woff and b/static/font/font/fontello.woff differ diff --git a/static/font/font/fontello.woff2 b/static/font/font/fontello.woff2 index 9ec54aa4..b91fcbd7 100644 Binary files a/static/font/font/fontello.woff2 and b/static/font/font/fontello.woff2 differ -- cgit v1.2.3-70-g09d2