├── edit_photos-clear.css ├── language ├── zh_CN │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── zh_HK │ ├── description.txt │ └── plugin.lang.php ├── zh_TW │ ├── description.txt │ └── plugin.lang.php ├── ja_JP │ ├── description.txt │ └── plugin.lang.php ├── en_UK │ ├── description.txt │ └── plugin.lang.php ├── vi_VN │ ├── description.txt │ └── plugin.lang.php ├── af_ZA │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── he_IL │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── sv_SE │ ├── description.txt │ └── plugin.lang.php ├── bg_BG │ ├── description.txt │ └── plugin.lang.php ├── nb_NO │ ├── description.txt │ └── plugin.lang.php ├── sk_SK │ └── description.txt ├── eo_EO │ ├── description.txt │ └── plugin.lang.php ├── gl_ES │ ├── description.txt │ └── plugin.lang.php ├── ar_SA │ ├── description.txt │ └── plugin.lang.php ├── da_DK │ └── description.txt ├── fa_IR │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── hu_HU │ ├── description.txt │ └── plugin.lang.php ├── lt_LT │ ├── description.txt │ └── plugin.lang.php ├── nl_NL │ └── description.txt ├── pt_BR │ ├── description.txt │ └── index.php ├── tr_TR │ ├── description.txt │ └── plugin.lang.php ├── ca_ES │ └── description.txt ├── de_DE │ └── description.txt ├── es_MX │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── fi_FI │ ├── description.txt │ └── index.php ├── is_IS │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── lv_LV │ ├── description.txt │ └── plugin.lang.php ├── nn_NO │ ├── description.txt │ └── plugin.lang.php ├── pt_PT │ └── description.txt ├── es_ES │ └── description.txt ├── et_EE │ ├── description.txt │ └── index.php ├── hy_AM │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── pl_PL │ └── description.txt ├── ro_RO │ ├── description.txt │ └── plugin.lang.php ├── ru_RU │ └── description.txt ├── sh_RS │ ├── description.txt │ └── plugin.lang.php ├── ta_IN │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── br_FR │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── cs_CZ │ ├── description.txt │ └── plugin.lang.php ├── eu_ES │ ├── description.txt │ └── plugin.lang.php ├── sl_SI │ ├── description.txt │ └── plugin.lang.php ├── fr_CA │ ├── description.txt │ └── plugin.lang.php ├── it_IT │ ├── description.txt │ └── index.php ├── km_KH │ └── description.txt ├── fr_FR │ └── description.txt ├── th_TH │ ├── description.txt │ ├── index.php │ └── plugin.lang.php ├── uk_UA │ └── description.txt ├── sr_RS │ ├── description.txt │ └── index.php └── el_GR │ └── description.txt ├── fontello ├── font │ ├── fontello.eot │ ├── fontello.ttf │ ├── fontello.woff │ └── fontello.woff2 ├── LICENSE.txt ├── css │ ├── animation.css │ └── fontello-codes.css └── README.txt ├── template ├── admin_album.tpl ├── navigation_bar.tpl └── admin_config.tpl ├── admin_permission.css ├── admin.php ├── edit_photos-dark.css ├── admin_config.php └── edit_photos.js /edit_photos-clear.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/zh_CN/description.txt: -------------------------------------------------------------------------------- 1 | 允许非管理员向相册添加图片 -------------------------------------------------------------------------------- /language/zh_HK/description.txt: -------------------------------------------------------------------------------- 1 | 允許非管理員新增相片 -------------------------------------------------------------------------------- /language/zh_TW/description.txt: -------------------------------------------------------------------------------- 1 | 非管理員使用者可新增照片 -------------------------------------------------------------------------------- /language/ja_JP/description.txt: -------------------------------------------------------------------------------- 1 | 管理者以外のユーザは写真を追加できません -------------------------------------------------------------------------------- /language/en_UK/description.txt: -------------------------------------------------------------------------------- 1 | Non admin users can add photos -------------------------------------------------------------------------------- /language/vi_VN/description.txt: -------------------------------------------------------------------------------- 1 | Người dùng thường có thể thêm ảnh -------------------------------------------------------------------------------- /language/af_ZA/description.txt: -------------------------------------------------------------------------------- 1 | Gewone gebruikers kan fotos byvoeg. -------------------------------------------------------------------------------- /language/he_IL/description.txt: -------------------------------------------------------------------------------- 1 | ניהול משתמשים שלא יוכלו להוסיף תמונות -------------------------------------------------------------------------------- /language/sv_SE/description.txt: -------------------------------------------------------------------------------- 1 | Vanliga användare kan ladda upp bilder -------------------------------------------------------------------------------- /language/bg_BG/description.txt: -------------------------------------------------------------------------------- 1 | И потребителите могат да добавят снимки -------------------------------------------------------------------------------- /language/nb_NO/description.txt: -------------------------------------------------------------------------------- 1 | Ikke administratorer kan legge til bilder -------------------------------------------------------------------------------- /language/sk_SK/description.txt: -------------------------------------------------------------------------------- 1 | Možnosť pridávať fotografie pre neadminov -------------------------------------------------------------------------------- /language/eo_EO/description.txt: -------------------------------------------------------------------------------- 1 | Ne-administrantaj uzantoj rajtas aldoni fotojn. -------------------------------------------------------------------------------- /language/gl_ES/description.txt: -------------------------------------------------------------------------------- 1 | Usuarios non administradores poden engadir fotos -------------------------------------------------------------------------------- /language/ar_SA/description.txt: -------------------------------------------------------------------------------- 1 | المستخدمون من غير مجموعات الادارة بمكانهم اضافة صور -------------------------------------------------------------------------------- /language/da_DK/description.txt: -------------------------------------------------------------------------------- 1 | Andre end administratorer kan tilføje fotografier. -------------------------------------------------------------------------------- /language/fa_IR/description.txt: -------------------------------------------------------------------------------- 1 | کاربرانی که مدیر نیستند هم بتوانند عکس آپلود کنند -------------------------------------------------------------------------------- /language/hu_HU/description.txt: -------------------------------------------------------------------------------- 1 | Nem adminisztrátorok is tölthetnek fel képeket 2 | -------------------------------------------------------------------------------- /language/lt_LT/description.txt: -------------------------------------------------------------------------------- 1 | Leidžia įkelti nuotraukas ne administratoriams 2 | -------------------------------------------------------------------------------- /language/nl_NL/description.txt: -------------------------------------------------------------------------------- 1 | Niet-admin gebruikers kunnen nu ook foto's toevoegen -------------------------------------------------------------------------------- /language/pt_BR/description.txt: -------------------------------------------------------------------------------- 1 | Nenhum usuário administrador pode adicionar fotos -------------------------------------------------------------------------------- /language/tr_TR/description.txt: -------------------------------------------------------------------------------- 1 | Yönetici olmayan kullanıcılar fotoğraf ekleyebilir -------------------------------------------------------------------------------- /language/ca_ES/description.txt: -------------------------------------------------------------------------------- 1 | Permet afegir imatges als usuaris no administradors. 2 | -------------------------------------------------------------------------------- /language/de_DE/description.txt: -------------------------------------------------------------------------------- 1 | Benutzer ohne Administrator Status können Fotos hochladen -------------------------------------------------------------------------------- /language/es_MX/description.txt: -------------------------------------------------------------------------------- 1 | Los usuarios no administradores pueden agregar fotos. -------------------------------------------------------------------------------- /language/fi_FI/description.txt: -------------------------------------------------------------------------------- 1 | Salli muidenkin kuin ylläpitäjien ladata kuvia sivustolle. -------------------------------------------------------------------------------- /language/is_IS/description.txt: -------------------------------------------------------------------------------- 1 | Notendur sem ekki eru stjórnendur geta bætt við myndum -------------------------------------------------------------------------------- /language/lv_LV/description.txt: -------------------------------------------------------------------------------- 1 | Ne administratortipa lietotāji var pievienot fotogrāfijas -------------------------------------------------------------------------------- /language/nn_NO/description.txt: -------------------------------------------------------------------------------- 1 | Brukarar som ikkje er administratorar kan legge til bilete -------------------------------------------------------------------------------- /language/pt_PT/description.txt: -------------------------------------------------------------------------------- 1 | Utilizadores não administradores podem adicionar fotos -------------------------------------------------------------------------------- /language/es_ES/description.txt: -------------------------------------------------------------------------------- 1 | Permite que los usuarios añadan fotos sin ser administradores -------------------------------------------------------------------------------- /language/et_EE/description.txt: -------------------------------------------------------------------------------- 1 | Teised kasutajad peale administraatori saavad lisada fotosid -------------------------------------------------------------------------------- /language/hy_AM/description.txt: -------------------------------------------------------------------------------- 1 | Ոչ ադմինիստրատոր օգտատերերը կարող են լուսանկարներ ավելացնել: -------------------------------------------------------------------------------- /language/pl_PL/description.txt: -------------------------------------------------------------------------------- 1 | Użytkownicy nie będący administratorami mogą dodawać zdjęcia -------------------------------------------------------------------------------- /language/ro_RO/description.txt: -------------------------------------------------------------------------------- 1 | Utilizatorii care nu sunt administratori pot adăuga imagini -------------------------------------------------------------------------------- /language/ru_RU/description.txt: -------------------------------------------------------------------------------- 1 | Пользователи без админских прав могут загружать изображения -------------------------------------------------------------------------------- /language/sh_RS/description.txt: -------------------------------------------------------------------------------- 1 | Fotografije mogu dodati i korisnici koji nisu administratori. -------------------------------------------------------------------------------- /language/ta_IN/description.txt: -------------------------------------------------------------------------------- 1 | நிர்வாகி அல்லாத பயனர்கள் 2 | புகைப்படங்களை சேர்க்க முடியும் -------------------------------------------------------------------------------- /language/br_FR/description.txt: -------------------------------------------------------------------------------- 1 | An implijerien a c'hell ouzhpennañ luc'hskeudennoù hep bezañ merour -------------------------------------------------------------------------------- /language/cs_CZ/description.txt: -------------------------------------------------------------------------------- 1 | Přidávat fotografie mohou také uživatelé bez administrátorských práv -------------------------------------------------------------------------------- /language/eu_ES/description.txt: -------------------------------------------------------------------------------- 1 | Administratzaileak ez diren erabiltzaileek argazkiak gehi ditzakete -------------------------------------------------------------------------------- /language/sl_SI/description.txt: -------------------------------------------------------------------------------- 1 | Tudi uporabniki brez skrbniških pravic lahko dodajajo fotografije. -------------------------------------------------------------------------------- /language/fr_CA/description.txt: -------------------------------------------------------------------------------- 1 | Permet aux utilisateurs d'ajouter des photos sans être administrateur -------------------------------------------------------------------------------- /language/it_IT/description.txt: -------------------------------------------------------------------------------- 1 | Permette agli utenti di aggiungere delle foto senza essere amministratori -------------------------------------------------------------------------------- /language/km_KH/description.txt: -------------------------------------------------------------------------------- 1 | អ្នកប្រើប្រាស់ដែលមិនមែនជាអ្នកគ្រប់គ្រង អាចបន្ថែមរូបថតបាន -------------------------------------------------------------------------------- /language/fr_FR/description.txt: -------------------------------------------------------------------------------- 1 | Permet aux utilisateurs d'ajouter des photos sans être administrateur 2 | -------------------------------------------------------------------------------- /fontello/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/fontello/font/fontello.eot -------------------------------------------------------------------------------- /fontello/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/fontello/font/fontello.ttf -------------------------------------------------------------------------------- /fontello/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/fontello/font/fontello.woff -------------------------------------------------------------------------------- /fontello/font/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/fontello/font/fontello.woff2 -------------------------------------------------------------------------------- /language/nb_NO/plugin.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plegall/Piwigo-community/HEAD/language/nb_NO/plugin.lang.php -------------------------------------------------------------------------------- /language/th_TH/description.txt: -------------------------------------------------------------------------------- 1 | ปลั๊กอินที่อนุญาตให้สมาชิกทั่วไปสามารถอัพโหลดรูปถ่าย และสร้างอัลบั้มของตนเองได้ผ่านทางหน้าเว็บ. -------------------------------------------------------------------------------- /language/uk_UA/description.txt: -------------------------------------------------------------------------------- 1 | Стандартний плаґін за допомогою якого користувачі(не адміністратори) можуть завантажувати фотографії. -------------------------------------------------------------------------------- /language/sr_RS/description.txt: -------------------------------------------------------------------------------- 1 | Овај додатак омогућава корисницима галерије да праве албуме и додају слике - уз опцију контроле од стране администратора -------------------------------------------------------------------------------- /language/af_ZA/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/br_FR/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/et_EE/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/fa_IR/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/fi_FI/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/he_IL/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/pt_BR/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/sr_RS/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/ta_IN/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/th_TH/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/zh_CN/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /language/el_GR/description.txt: -------------------------------------------------------------------------------- 1 | Μη διαχειρηστές χρήστες μπορούν να προσθέσουν φωτογραφίες -------------------------------------------------------------------------------- /template/admin_album.tpl: -------------------------------------------------------------------------------- 1 | {literal} 2 | 7 | {/literal} 8 | 9 |
25 | -------------------------------------------------------------------------------- /template/navigation_bar.tpl: -------------------------------------------------------------------------------- 1 | 29 | -------------------------------------------------------------------------------- /language/es_MX/index.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /language/hy_AM/index.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /language/is_IS/index.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /fontello/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2016 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | 12 | 13 | ## Elusive 14 | 15 | Copyright (C) 2013 by Aristeides Stathopoulos 16 | 17 | Author: Aristeides Stathopoulos 18 | License: SIL (http://scripts.sil.org/OFL) 19 | Homepage: http://aristeides.com/ 20 | 21 | 22 | ## Typicons 23 | 24 | (c) Stephen Hutchings 2012 25 | 26 | Author: Stephen Hutchings 27 | License: SIL (http://scripts.sil.org/OFL) 28 | Homepage: http://typicons.com/ 29 | 30 | 31 | ## Entypo 32 | 33 | Copyright (C) 2012 by Daniel Bruce 34 | 35 | Author: Daniel Bruce 36 | License: SIL (http://scripts.sil.org/OFL) 37 | Homepage: http://www.entypo.com 38 | 39 | 40 | ## MFG Labs 41 | 42 | Copyright (C) 2012 by Daniel Bruce 43 | 44 | Author: MFG Labs 45 | License: SIL (http://scripts.sil.org/OFL) 46 | Homepage: http://www.mfglabs.com/ 47 | 48 | 49 | ## Iconic 50 | 51 | Copyright (C) 2012 by P.J. Onori 52 | 53 | Author: P.J. Onori 54 | License: SIL (http://scripts.sil.org/OFL) 55 | Homepage: http://somerandomdude.com/work/iconic/ 56 | 57 | 58 | ## Fontelico 59 | 60 | Copyright (C) 2012 by Fontello project 61 | 62 | Author: Crowdsourced, for Fontello project 63 | License: SIL (http://scripts.sil.org/OFL) 64 | Homepage: http://fontello.com 65 | 66 | 67 | ## Web Symbols 68 | 69 | Copyright (c) 2011 by Just Be Nice studio. All rights reserved. 70 | 71 | Author: Just Be Nice studio 72 | License: SIL (http://scripts.sil.org/OFL) 73 | Homepage: http://www.justbenicestudio.com/ 74 | 75 | 76 | -------------------------------------------------------------------------------- /language/it_IT/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/admin_config.tpl: -------------------------------------------------------------------------------- 1 | {literal} 2 | 30 | {/literal} 31 | 32 | {literal} 33 | 45 | {/literal} 46 | 47 | 68 | -------------------------------------------------------------------------------- /fontello/css/animation.css: -------------------------------------------------------------------------------- 1 | /* 2 | Animation example, for spinners 3 | */ 4 | .animate-spin { 5 | -moz-animation: spin 2s infinite linear; 6 | -o-animation: spin 2s infinite linear; 7 | -webkit-animation: spin 2s infinite linear; 8 | animation: spin 2s infinite linear; 9 | display: inline-block; 10 | } 11 | @-moz-keyframes spin { 12 | 0% { 13 | -moz-transform: rotate(0deg); 14 | -o-transform: rotate(0deg); 15 | -webkit-transform: rotate(0deg); 16 | transform: rotate(0deg); 17 | } 18 | 19 | 100% { 20 | -moz-transform: rotate(359deg); 21 | -o-transform: rotate(359deg); 22 | -webkit-transform: rotate(359deg); 23 | transform: rotate(359deg); 24 | } 25 | } 26 | @-webkit-keyframes spin { 27 | 0% { 28 | -moz-transform: rotate(0deg); 29 | -o-transform: rotate(0deg); 30 | -webkit-transform: rotate(0deg); 31 | transform: rotate(0deg); 32 | } 33 | 34 | 100% { 35 | -moz-transform: rotate(359deg); 36 | -o-transform: rotate(359deg); 37 | -webkit-transform: rotate(359deg); 38 | transform: rotate(359deg); 39 | } 40 | } 41 | @-o-keyframes spin { 42 | 0% { 43 | -moz-transform: rotate(0deg); 44 | -o-transform: rotate(0deg); 45 | -webkit-transform: rotate(0deg); 46 | transform: rotate(0deg); 47 | } 48 | 49 | 100% { 50 | -moz-transform: rotate(359deg); 51 | -o-transform: rotate(359deg); 52 | -webkit-transform: rotate(359deg); 53 | transform: rotate(359deg); 54 | } 55 | } 56 | @-ms-keyframes spin { 57 | 0% { 58 | -moz-transform: rotate(0deg); 59 | -o-transform: rotate(0deg); 60 | -webkit-transform: rotate(0deg); 61 | transform: rotate(0deg); 62 | } 63 | 64 | 100% { 65 | -moz-transform: rotate(359deg); 66 | -o-transform: rotate(359deg); 67 | -webkit-transform: rotate(359deg); 68 | transform: rotate(359deg); 69 | } 70 | } 71 | @keyframes spin { 72 | 0% { 73 | -moz-transform: rotate(0deg); 74 | -o-transform: rotate(0deg); 75 | -webkit-transform: rotate(0deg); 76 | transform: rotate(0deg); 77 | } 78 | 79 | 100% { 80 | -moz-transform: rotate(359deg); 81 | -o-transform: rotate(359deg); 82 | -webkit-transform: rotate(359deg); 83 | transform: rotate(359deg); 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /admin_permission.css: -------------------------------------------------------------------------------- 1 | form fieldset p { 2 | text-align:left;margin:0 0 1.5em 0;line-height:20px; 3 | } 4 | 5 | .permissionActions { 6 | text-align:right !important; 7 | } 8 | 9 | .permissionActions a:hover { 10 | border:none 11 | } 12 | 13 | .permissionActions img { 14 | margin-bottom:-2px 15 | } 16 | 17 | #community_nb_photos, 18 | #community_storage { 19 | width:400px; 20 | display:inline-block; 21 | margin-right:10px; 22 | } 23 | 24 | /* Permission Table */ 25 | #permission-table { 26 | position: relative; 27 | font-family: "Open Sans", "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif; 28 | } 29 | 30 | #permission-table-content { 31 | width:97%; 32 | border:0; 33 | border-collapse:separate; 34 | border-spacing: 0 1em; 35 | } 36 | 37 | #permission-table-content th, 38 | #permission-table-content td{ 39 | text-align:left; 40 | padding:5px; 41 | font-size:12px; 42 | } 43 | 44 | table, 45 | #permission-table-content thead tr{ 46 | text-align: left; 47 | font-size: 1.1em; 48 | font-weight: bold; 49 | color: #9e9e9e; 50 | background-color:transparent!important; 51 | box-shadow:none; 52 | 53 | } 54 | 55 | #permission-table-content tr{ 56 | box-shadow: 0 2px 2px #00000024; 57 | background-color: #F3F3F3; 58 | color: #555; 59 | height: 50px; 60 | border-radius: 10px; 61 | } 62 | 63 | #permission-table-content td:first-child{ 64 | border-top-left-radius:10px; 65 | border-bottom-left-radius: 10px; 66 | } 67 | 68 | #permission-table-content td:last-child{ 69 | border-top-right-radius: 10px; 70 | border-bottom-right-radius: 10px; 71 | } 72 | 73 | .permission-header-id{ 74 | width: 5%; 75 | } 76 | 77 | .permission-header-who{ 78 | width: 20%; 79 | max-width: 195px; 80 | } 81 | 82 | .permission-header-where{ 83 | width: 15%; 84 | max-width: 195px; 85 | } 86 | 87 | .permission-header-trust{ 88 | width: 15%; 89 | max-width: 195px; 90 | } 91 | 92 | .permission-header-options{ 93 | width: 35%; 94 | max-width: 195px; 95 | } 96 | 97 | .permission-header-actions{ 98 | width: 20%; 99 | max-width: 195px; 100 | display: none; 101 | } 102 | 103 | .permission-col { 104 | text-align: left; 105 | padding: 0; 106 | } 107 | 108 | .permission-header-button { 109 | position:relative; 110 | padding:5px; 111 | } 112 | 113 | .lineView .user-container .tmp-edit { 114 | display: flex; 115 | } -------------------------------------------------------------------------------- /fontello/README.txt: -------------------------------------------------------------------------------- 1 | This webfont is generated by http://fontello.com open source project. 2 | 3 | 4 | ================================================================================ 5 | Please, note, that you should obey original font licenses, used to make this 6 | webfont pack. Details available in LICENSE.txt file. 7 | 8 | - Usually, it's enough to publish content of LICENSE.txt file somewhere on your 9 | site in "About" section. 10 | 11 | - If your project is open-source, usually, it will be ok to make LICENSE.txt 12 | file publicly available in your repository. 13 | 14 | - Fonts, used in Fontello, don't require a clickable link on your site. 15 | But any kind of additional authors crediting is welcome. 16 | ================================================================================ 17 | 18 | 19 | Comments on archive content 20 | --------------------------- 21 | 22 | - /font/* - fonts in different formats 23 | 24 | - /css/* - different kinds of css, for all situations. Should be ok with 25 | twitter bootstrap. Also, you can skip style and assign icon classes 26 | directly to text elements, if you don't mind about IE7. 27 | 28 | - demo.html - demo file, to show your webfont content 29 | 30 | - LICENSE.txt - license info about source fonts, used to build your one. 31 | 32 | - config.json - keeps your settings. You can import it back into fontello 33 | anytime, to continue your work 34 | 35 | 36 | Why so many CSS files ? 37 | ----------------------- 38 | 39 | Because we like to fit all your needs :) 40 | 41 | - basic file,