aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/baggy
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-04 16:26:50 +0200
committerGitHub <noreply@github.com>2016-10-04 16:26:50 +0200
commit57386125abc5c50c1438cf7e78d01f06021adc0a (patch)
treed3f26102f9697247c93ac69db6000d15e96fbb23 /app/Resources/static/themes/baggy
parentf2ab290f0fc8a2909bb490e0ed2d91a677a95cc4 (diff)
parentc10adc1f762d004350a7921250c6821baa866e2d (diff)
downloadwallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.tar.gz
wallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.tar.zst
wallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.zip
Merge pull request #2353 from wallabag/assets-fix
Basically, fix everything
Diffstat (limited to 'app/Resources/static/themes/baggy')
-rwxr-xr-xapp/Resources/static/themes/baggy/css/main.css32
-rwxr-xr-xapp/Resources/static/themes/baggy/js/init.js6
2 files changed, 34 insertions, 4 deletions
diff --git a/app/Resources/static/themes/baggy/css/main.css b/app/Resources/static/themes/baggy/css/main.css
index eeedd277..99ea6c6b 100755
--- a/app/Resources/static/themes/baggy/css/main.css
+++ b/app/Resources/static/themes/baggy/css/main.css
@@ -796,6 +796,15 @@ a.add-to-wallabag-link-after::after {
796 text-transform: none; 796 text-transform: none;
797 line-height: 1; 797 line-height: 1;
798 798
799 /* Enable Ligatures ================ */
800 letter-spacing: 0;
801 -webkit-font-feature-settings: "liga";
802 -moz-font-feature-settings: "liga=1";
803 -moz-font-feature-settings: "liga";
804 -ms-font-feature-settings: "liga" 1;
805 -o-font-feature-settings: "liga";
806 font-feature-settings: "liga";
807
799 /* Better Font Rendering =========== */ 808 /* Better Font Rendering =========== */
800 -webkit-font-smoothing: antialiased; 809 -webkit-font-smoothing: antialiased;
801 -moz-osx-font-smoothing: grayscale; 810 -moz-osx-font-smoothing: grayscale;
@@ -838,7 +847,7 @@ a.add-to-wallabag-link-after::after {
838} 847}
839 848
840.icon-twitter::before { 849.icon-twitter::before {
841 content: "\ea91"; 850 content: "\ea96";
842} 851}
843 852
844.icon-down-open::before { 853.icon-down-open::before {
@@ -877,6 +886,22 @@ a.add-to-wallabag-link-after::after {
877 content: "\e936"; 886 content: "\e936";
878} 887}
879 888
889.icon-eye::before {
890 content: "\e9ce";
891}
892
893.icon-no-eye::before {
894 content: "\e9d1";
895}
896
897.icon-calendar::before {
898 content: "\e953";
899}
900
901.icon-time::before {
902 content: "\e952";
903}
904
880/* .icon-image class, for image-based icons 905/* .icon-image class, for image-based icons
881 ========================================================================== */ 906 ========================================================================== */
882 907
@@ -898,6 +923,11 @@ a.add-to-wallabag-link-after::after {
898 background-image: url("../../_global/img/icons/diaspora-icon--black.png"); 923 background-image: url("../../_global/img/icons/diaspora-icon--black.png");
899} 924}
900 925
926/* shaarli */
927.icon-image--shaarli {
928 background-image: url("../../_global/img/icons/shaarli.png");
929}
930
901/* ========================================================================== 931/* ==========================================================================
902 Icon selected 932 Icon selected
903 ========================================================================== */ 933 ========================================================================== */
diff --git a/app/Resources/static/themes/baggy/js/init.js b/app/Resources/static/themes/baggy/js/init.js
index 8da9a859..dc11043a 100755
--- a/app/Resources/static/themes/baggy/js/init.js
+++ b/app/Resources/static/themes/baggy/js/init.js
@@ -1,10 +1,10 @@
1import { savePercent, retrievePercent } from '../../_global/js/tools';
2import { toggleSaveLinkForm } from './uiTools';
3
1const $ = global.jquery = require('jquery'); 4const $ = global.jquery = require('jquery');
2require('jquery.cookie'); 5require('jquery.cookie');
3require('jquery-ui-browserify'); 6require('jquery-ui-browserify');
4const annotator = require('annotator'); 7const annotator = require('annotator');
5import { savePercent, retrievePercent } from '../../_global/js/tools.js';
6import { split, extractLast } from './autoCompleteTags.js';
7import { toggleSaveLinkForm } from './uiTools.js';
8 8
9 9
10$.fn.ready(() => { 10$.fn.ready(() => {