From 0a6858eab8f60377b27644d43b75014ced11723f Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Sat, 18 May 2019 11:00:50 -0500 Subject: Eliminate automatic zooming on mobile --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.html') diff --git a/index.html b/index.html index d8defc2e..63161f3c 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + Pleroma -- cgit v1.2.3-70-g09d2 From 6795769b93564b66395fcb46a50d39e831cdc500 Mon Sep 17 00:00:00 2001 From: Sergey Suprunenko Date: Sat, 17 Aug 2019 08:26:00 +0000 Subject: Show a message when JS is disabled --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'index.html') diff --git a/index.html b/index.html index 63161f3c..a8681c8b 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,8 @@ - + +
-- cgit v1.2.3-70-g09d2 From ae70439447d029e5f9e2fcd558dc198bff47c89b Mon Sep 17 00:00:00 2001 From: taehoon Date: Fri, 19 Jul 2019 12:39:18 -0400 Subject: setting display: initial makes trouble, instead, toggle display: none using classname --- index.html | 2 +- src/App.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'index.html') diff --git a/index.html b/index.html index a8681c8b..fd4e795e 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,7 @@ - +
diff --git a/src/App.scss b/src/App.scss index ea7b54e8..1f0b2619 100644 --- a/src/App.scss +++ b/src/App.scss @@ -38,6 +38,10 @@ h4 { text-align: center; } +.hidden { + display: none; +} + body { font-family: sans-serif; font-family: var(--interfaceFont, sans-serif); -- cgit v1.2.3-70-g09d2 From 0082ed837ed0b4b9a047520460782562bad0d8aa Mon Sep 17 00:00:00 2001 From: taehoon Date: Sun, 1 Dec 2019 12:56:53 -0500 Subject: versioning the font resources through webpack --- index.html | 2 - src/font/LICENSE.txt | 39 ++++ src/font/README.txt | 75 +++++++ src/font/config.json | 308 +++++++++++++++++++++++++++ src/font/css/animation.css | 85 ++++++++ src/font/css/fontello-codes.css | 48 +++++ src/font/css/fontello-embedded.css | 101 +++++++++ src/font/css/fontello-ie7-codes.css | 48 +++++ src/font/css/fontello-ie7.css | 59 ++++++ src/font/css/fontello.css | 104 +++++++++ src/font/demo.html | 374 +++++++++++++++++++++++++++++++++ src/font/font/fontello.eot | Bin 0 -> 20152 bytes src/font/font/fontello.svg | 104 +++++++++ src/font/font/fontello.ttf | Bin 0 -> 19984 bytes src/font/font/fontello.woff | Bin 0 -> 12248 bytes src/font/font/fontello.woff2 | Bin 0 -> 10392 bytes src/main.js | 3 + static/font/LICENSE.txt | 39 ---- static/font/README.txt | 75 ------- static/font/config.json | 308 --------------------------- static/font/css/animation.css | 85 -------- static/font/css/fontello-codes.css | 48 ----- static/font/css/fontello-embedded.css | 101 --------- static/font/css/fontello-ie7-codes.css | 48 ----- static/font/css/fontello-ie7.css | 59 ------ static/font/css/fontello.css | 104 --------- static/font/demo.html | 374 --------------------------------- static/font/font/fontello.eot | Bin 20152 -> 0 bytes static/font/font/fontello.svg | 104 --------- static/font/font/fontello.ttf | Bin 19984 -> 0 bytes static/font/font/fontello.woff | Bin 12248 -> 0 bytes static/font/font/fontello.woff2 | Bin 10392 -> 0 bytes 32 files changed, 1348 insertions(+), 1347 deletions(-) create mode 100755 src/font/LICENSE.txt create mode 100755 src/font/README.txt create mode 100755 src/font/config.json create mode 100755 src/font/css/animation.css create mode 100755 src/font/css/fontello-codes.css create mode 100755 src/font/css/fontello-embedded.css create mode 100755 src/font/css/fontello-ie7-codes.css create mode 100755 src/font/css/fontello-ie7.css create mode 100755 src/font/css/fontello.css create mode 100755 src/font/demo.html create mode 100755 src/font/font/fontello.eot create mode 100755 src/font/font/fontello.svg create mode 100755 src/font/font/fontello.ttf create mode 100755 src/font/font/fontello.woff create mode 100755 src/font/font/fontello.woff2 delete mode 100755 static/font/LICENSE.txt delete mode 100755 static/font/README.txt delete mode 100755 static/font/config.json delete mode 100755 static/font/css/animation.css delete mode 100755 static/font/css/fontello-codes.css delete mode 100755 static/font/css/fontello-embedded.css delete mode 100755 static/font/css/fontello-ie7-codes.css delete mode 100755 static/font/css/fontello-ie7.css delete mode 100755 static/font/css/fontello.css delete mode 100755 static/font/demo.html delete mode 100755 static/font/font/fontello.eot delete mode 100755 static/font/font/fontello.svg delete mode 100755 static/font/font/fontello.ttf delete mode 100755 static/font/font/fontello.woff delete mode 100755 static/font/font/fontello.woff2 (limited to 'index.html') diff --git a/index.html b/index.html index fd4e795e..1ff944d9 100644 --- a/index.html +++ b/index.html @@ -6,8 +6,6 @@ Pleroma - - diff --git a/src/font/LICENSE.txt b/src/font/LICENSE.txt new file mode 100755 index 00000000..95966f00 --- /dev/null +++ b/src/font/LICENSE.txt @@ -0,0 +1,39 @@ +Font license info + + +## Font Awesome + + Copyright (C) 2016 by Dave Gandy + + Author: Dave Gandy + License: SIL () + Homepage: http://fortawesome.github.com/Font-Awesome/ + + +## Entypo + + Copyright (C) 2012 by Daniel Bruce + + Author: Daniel Bruce + License: SIL (http://scripts.sil.org/OFL) + Homepage: http://www.entypo.com + + +## Iconic + + Copyright (C) 2012 by P.J. Onori + + Author: P.J. Onori + License: SIL (http://scripts.sil.org/OFL) + Homepage: http://somerandomdude.com/work/iconic/ + + +## Fontelico + + Copyright (C) 2012 by Fontello project + + Author: Crowdsourced, for Fontello project + License: SIL (http://scripts.sil.org/OFL) + Homepage: http://fontello.com + + diff --git a/src/font/README.txt b/src/font/README.txt new file mode 100755 index 00000000..beaab336 --- /dev/null +++ b/src/font/README.txt @@ -0,0 +1,75 @@ +This webfont is generated by http://fontello.com open source project. + + +================================================================================ +Please, note, that you should obey original font licenses, used to make this +webfont pack. Details available in LICENSE.txt file. + +- Usually, it's enough to publish content of LICENSE.txt file somewhere on your + site in "About" section. + +- If your project is open-source, usually, it will be ok to make LICENSE.txt + file publicly available in your repository. + +- Fonts, used in Fontello, don't require a clickable link on your site. + But any kind of additional authors crediting is welcome. +================================================================================ + + +Comments on archive content +--------------------------- + +- /font/* - fonts in different formats + +- /css/* - different kinds of css, for all situations. Should be ok with + twitter bootstrap. Also, you can skip style and assign icon classes + directly to text elements, if you don't mind about IE7. + +- demo.html - demo file, to show your webfont content + +- LICENSE.txt - license info about source fonts, used to build your one. + +- config.json - keeps your settings. You can import it back into fontello + anytime, to continue your work + + +Why so many CSS files ? +----------------------- + +Because we like to fit all your needs :) + +- basic file, .css - is usually enough, it contains @font-face + and character code definitions + +- *-ie7.css - if you need IE7 support, but still don't wish to put char codes + directly into html + +- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face + rules, but still wish to benefit from css generation. That can be very + convenient for automated asset build systems. When you need to update font - + no need to manually edit files, just override old version with archive + content. See fontello source code for examples. + +- *-embedded.css - basic css file, but with embedded WOFF font, to avoid + CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain. + We strongly recommend to resolve this issue by `Access-Control-Allow-Origin` + server headers. But if you ok with dirty hack - this file is for you. Note, + that data url moved to separate @font-face to avoid problems with + + + + + + + +
+

fontello font demo

+ +
+
+
+
icon-cancel0xe800
+
icon-upload0xe801
+
icon-star0xe802
+
icon-star-empty0xe803
+
+
+
icon-retweet0xe804
+
icon-eye-off0xe805
+
icon-search0xe806
+
icon-cog0xe807
+
+
+
icon-logout0xe808
+
icon-down-open0xe809
+
icon-attach0xe80a
+
icon-picture0xe80b
+
+
+
icon-video0xe80c
+
icon-right-open0xe80d
+
icon-left-open0xe80e
+
icon-up-open0xe80f
+
+
+
icon-bell-ringing-o0xe810
+
icon-lock0xe811
+
icon-globe0xe812
+
icon-brush0xe813
+
+
+
icon-attention0xe814
+
icon-plus0xe815
+
icon-adjust0xe816
+
icon-edit0xe817
+
+
+
icon-pencil0xe818
+
icon-pin0xe819
+
icon-wrench0xe81a
+
icon-chart-bar0xe81b
+
+
+
icon-zoom-in0xe81c
+
icon-spin30xe832
+
icon-spin40xe834
+
icon-link-ext0xf08e
+
+
+
icon-link-ext-alt0xf08f
+
icon-menu0xf0c9
+
icon-mail-alt0xf0e0
+
icon-gauge0xf0e4
+
+
+
icon-comment-empty0xf0e5
+
icon-bell-alt0xf0f3
+
icon-plus-squared0xf0fe
+
icon-reply0xf112
+
+
+
icon-smile0xf118
+
icon-lock-open-alt0xf13e
+
icon-ellipsis0xf141
+
icon-play-circled0xf144
+
+
+
icon-thumbs-up-alt0xf164
+
icon-binoculars0xf1e5
+
icon-user-plus0xf234
+
+
+ + + \ No newline at end of file diff --git a/src/font/font/fontello.eot b/src/font/font/fontello.eot new file mode 100755 index 00000000..1703fd97 Binary files /dev/null and b/src/font/font/fontello.eot differ diff --git a/src/font/font/fontello.svg b/src/font/font/fontello.svg new file mode 100755 index 00000000..f5e497ce --- /dev/null +++ b/src/font/font/fontello.svg @@ -0,0 +1,104 @@ + + + +Copyright (C) 2019 by original authors @ fontello.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/font/font/fontello.ttf b/src/font/font/fontello.ttf new file mode 100755 index 00000000..e9ed7803 Binary files /dev/null and b/src/font/font/fontello.ttf differ diff --git a/src/font/font/fontello.woff b/src/font/font/fontello.woff new file mode 100755 index 00000000..1d5025d3 Binary files /dev/null and b/src/font/font/fontello.woff differ diff --git a/src/font/font/fontello.woff2 b/src/font/font/fontello.woff2 new file mode 100755 index 00000000..078991eb Binary files /dev/null and b/src/font/font/fontello.woff2 differ diff --git a/src/main.js b/src/main.js index a9db1cff..6469ba5c 100644 --- a/src/main.js +++ b/src/main.js @@ -32,6 +32,9 @@ import VTooltip from 'v-tooltip' import afterStoreSetup from './boot/after_store.js' +import './font/css/fontello.css' +import './font/css/animation.css' + const currentLocale = (window.navigator.language || 'en').split('-')[0] Vue.use(Vuex) diff --git a/static/font/LICENSE.txt b/static/font/LICENSE.txt deleted file mode 100755 index 95966f00..00000000 --- a/static/font/LICENSE.txt +++ /dev/null @@ -1,39 +0,0 @@ -Font license info - - -## Font Awesome - - Copyright (C) 2016 by Dave Gandy - - Author: Dave Gandy - License: SIL () - Homepage: http://fortawesome.github.com/Font-Awesome/ - - -## Entypo - - Copyright (C) 2012 by Daniel Bruce - - Author: Daniel Bruce - License: SIL (http://scripts.sil.org/OFL) - Homepage: http://www.entypo.com - - -## Iconic - - Copyright (C) 2012 by P.J. Onori - - Author: P.J. Onori - License: SIL (http://scripts.sil.org/OFL) - Homepage: http://somerandomdude.com/work/iconic/ - - -## Fontelico - - Copyright (C) 2012 by Fontello project - - Author: Crowdsourced, for Fontello project - License: SIL (http://scripts.sil.org/OFL) - Homepage: http://fontello.com - - diff --git a/static/font/README.txt b/static/font/README.txt deleted file mode 100755 index beaab336..00000000 --- a/static/font/README.txt +++ /dev/null @@ -1,75 +0,0 @@ -This webfont is generated by http://fontello.com open source project. - - -================================================================================ -Please, note, that you should obey original font licenses, used to make this -webfont pack. Details available in LICENSE.txt file. - -- Usually, it's enough to publish content of LICENSE.txt file somewhere on your - site in "About" section. - -- If your project is open-source, usually, it will be ok to make LICENSE.txt - file publicly available in your repository. - -- Fonts, used in Fontello, don't require a clickable link on your site. - But any kind of additional authors crediting is welcome. -================================================================================ - - -Comments on archive content ---------------------------- - -- /font/* - fonts in different formats - -- /css/* - different kinds of css, for all situations. Should be ok with - twitter bootstrap. Also, you can skip style and assign icon classes - directly to text elements, if you don't mind about IE7. - -- demo.html - demo file, to show your webfont content - -- LICENSE.txt - license info about source fonts, used to build your one. - -- config.json - keeps your settings. You can import it back into fontello - anytime, to continue your work - - -Why so many CSS files ? ------------------------ - -Because we like to fit all your needs :) - -- basic file, .css - is usually enough, it contains @font-face - and character code definitions - -- *-ie7.css - if you need IE7 support, but still don't wish to put char codes - directly into html - -- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face - rules, but still wish to benefit from css generation. That can be very - convenient for automated asset build systems. When you need to update font - - no need to manually edit files, just override old version with archive - content. See fontello source code for examples. - -- *-embedded.css - basic css file, but with embedded WOFF font, to avoid - CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain. - We strongly recommend to resolve this issue by `Access-Control-Allow-Origin` - server headers. But if you ok with dirty hack - this file is for you. Note, - that data url moved to separate @font-face to avoid problems with - - - - - - - -
-

fontello font demo

- -
-
-
-
icon-cancel0xe800
-
icon-upload0xe801
-
icon-star0xe802
-
icon-star-empty0xe803
-
-
-
icon-retweet0xe804
-
icon-eye-off0xe805
-
icon-search0xe806
-
icon-cog0xe807
-
-
-
icon-logout0xe808
-
icon-down-open0xe809
-
icon-attach0xe80a
-
icon-picture0xe80b
-
-
-
icon-video0xe80c
-
icon-right-open0xe80d
-
icon-left-open0xe80e
-
icon-up-open0xe80f
-
-
-
icon-bell-ringing-o0xe810
-
icon-lock0xe811
-
icon-globe0xe812
-
icon-brush0xe813
-
-
-
icon-attention0xe814
-
icon-plus0xe815
-
icon-adjust0xe816
-
icon-edit0xe817
-
-
-
icon-pencil0xe818
-
icon-pin0xe819
-
icon-wrench0xe81a
-
icon-chart-bar0xe81b
-
-
-
icon-zoom-in0xe81c
-
icon-spin30xe832
-
icon-spin40xe834
-
icon-link-ext0xf08e
-
-
-
icon-link-ext-alt0xf08f
-
icon-menu0xf0c9
-
icon-mail-alt0xf0e0
-
icon-gauge0xf0e4
-
-
-
icon-comment-empty0xf0e5
-
icon-bell-alt0xf0f3
-
icon-plus-squared0xf0fe
-
icon-reply0xf112
-
-
-
icon-smile0xf118
-
icon-lock-open-alt0xf13e
-
icon-ellipsis0xf141
-
icon-play-circled0xf144
-
-
-
icon-thumbs-up-alt0xf164
-
icon-binoculars0xf1e5
-
icon-user-plus0xf234
-
-
- - - \ No newline at end of file diff --git a/static/font/font/fontello.eot b/static/font/font/fontello.eot deleted file mode 100755 index 1703fd97..00000000 Binary files a/static/font/font/fontello.eot and /dev/null differ diff --git a/static/font/font/fontello.svg b/static/font/font/fontello.svg deleted file mode 100755 index f5e497ce..00000000 --- a/static/font/font/fontello.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - -Copyright (C) 2019 by original authors @ fontello.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/font/font/fontello.ttf b/static/font/font/fontello.ttf deleted file mode 100755 index e9ed7803..00000000 Binary files a/static/font/font/fontello.ttf and /dev/null differ diff --git a/static/font/font/fontello.woff b/static/font/font/fontello.woff deleted file mode 100755 index 1d5025d3..00000000 Binary files a/static/font/font/fontello.woff and /dev/null differ diff --git a/static/font/font/fontello.woff2 b/static/font/font/fontello.woff2 deleted file mode 100755 index 078991eb..00000000 Binary files a/static/font/font/fontello.woff2 and /dev/null differ -- cgit v1.2.3-70-g09d2