diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-13 13:14:17 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-13 13:14:17 +0900 |
| commit | c12726712844f525a064b5bcee8d7d429785c26b (patch) | |
| tree | a39fd578689fb12d3b59365c687584208daf0595 /src/web | |
| parent | Refactor (diff) | |
| download | misskey-c12726712844f525a064b5bcee8d7d429785c26b.tar.gz misskey-c12726712844f525a064b5bcee8d7d429785c26b.tar.bz2 misskey-c12726712844f525a064b5bcee8d7d429785c26b.zip | |
[Client] Fix glitches
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/common/tags/url.tag | 2 | ||||
| -rw-r--r-- | src/web/app/reset.styl | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/web/app/common/tags/url.tag b/src/web/app/common/tags/url.tag index 82ce6bb185..2f25152c54 100644 --- a/src/web/app/common/tags/url.tag +++ b/src/web/app/common/tags/url.tag @@ -1,6 +1,8 @@ <mk-url><a href={ url } target={ opts.target }><span class="schema">{ schema }//</span><span class="hostname">{ hostname }</span><span class="port" if={ port != '' }>:{ port }</span><span class="pathname" if={ pathname != '' }>{ pathname }</span><span class="query">{ query }</span><span class="hash">{ hash }</span></a> <style type="stylus"> :scope + word-break break-all + > a &:after content "\f14c" diff --git a/src/web/app/reset.styl b/src/web/app/reset.styl index f9297ebd29..2b3527f8f5 100644 --- a/src/web/app/reset.styl +++ b/src/web/app/reset.styl @@ -33,3 +33,6 @@ button * pointer-events none + +pre + white-space nowrap |