diff options
| author | 2013-11-23 17:29:23 +0100 | |
|---|---|---|
| committer | 2013-11-23 17:29:23 +0100 | |
| commit | 6236f2a803185c06331ddd3e5cbdb4499629e1ef (patch) | |
| tree | 4cddfdf0f050408e6c15effd5305df07678aca53 /public | |
| parent | de4e9d5a85dfb99dcfe7fac765c5af6cd5b5f720 (diff) | |
Encore des alternatives Unicode aux icônes
Contribue à https://github.com/marienfressinaud/FreshRSS/issues/284
Diffstat (limited to 'public')
| -rw-r--r-- | public/install.php | 2 | ||||
| -rw-r--r-- | public/scripts/global_view.js | 3 | ||||
| -rw-r--r-- | public/scripts/main.js | 2 | ||||
| -rw-r--r-- | public/themes/default/global.css | 1 | ||||
| -rw-r--r-- | public/themes/flat-design/global.css | 1 |
5 files changed, 5 insertions, 4 deletions
diff --git a/public/install.php b/public/install.php index dbe79e774..68878a5e9 100644 --- a/public/install.php +++ b/public/install.php @@ -505,7 +505,7 @@ function printStep2 () { <!-- TODO: if no problem during version 0.6, remove for version 0.7 --> <label class="group-name" for="base_url"><?php echo _t ('base_url'); ?></label> <div class="group-controls"> - <input type="text" id="base_url" name="base_url" value="<?php echo isset ($_SESSION['base_url']) ? $_SESSION['base_url'] : $url; ?>" /> <i class="icon i_help"></i> <?php echo _t ('do_not_change_if_doubt'); ?> + <input type="text" id="base_url" name="base_url" value="<?php echo isset ($_SESSION['base_url']) ? $_SESSION['base_url'] : $url; ?>" /> <i class="icon i_help">ⓘ</i> <?php echo _t ('do_not_change_if_doubt'); ?> </div> </div> diff --git a/public/scripts/global_view.js b/public/scripts/global_view.js index 94580dc0d..14fad9525 100644 --- a/public/scripts/global_view.js +++ b/public/scripts/global_view.js @@ -30,8 +30,7 @@ function load_panel(link) { function init_close_panel() { $("#panel .close").click(function () { - $("#panel").html('<a class="close" href="#"><i class="icon i_close"></i></a>'); - + $("#panel").html('<a class="close" href="#"><i class="icon i_close">❌</i></a>'); init_close_panel(); $("#panel").slideToggle(); $("#overlay").fadeOut(); diff --git a/public/scripts/main.js b/public/scripts/main.js index da6684544..e9d300694 100644 --- a/public/scripts/main.js +++ b/public/scripts/main.js @@ -288,7 +288,7 @@ function init_column_categories() { return; } $('#aside_flux').on('click', '.category>a.dropdown-toggle', function () { - $(this).children().toggleClass("i_down").toggleClass("i_up"); + $(this).children().toggleClass("i_down").toggleClass("i_up").text($(this).hasClass("i_up") ? "△" : "▽"); $(this).parent().next(".feeds").slideToggle(); return false; }); diff --git a/public/themes/default/global.css b/public/themes/default/global.css index d4de7df50..89668c393 100644 --- a/public/themes/default/global.css +++ b/public/themes/default/global.css @@ -435,6 +435,7 @@ input, select, textarea { display: inline; } .dropdown-close a { + font-size: 0; position: fixed; top: 0; bottom: 0; left: 0; right: 0; diff --git a/public/themes/flat-design/global.css b/public/themes/flat-design/global.css index 87c4ace6f..7d930c066 100644 --- a/public/themes/flat-design/global.css +++ b/public/themes/flat-design/global.css @@ -427,6 +427,7 @@ input, select, textarea { display: inline; } .dropdown-close a { + font-size: 0; position: fixed; top: 0; bottom: 0; left: 0; right: 0; |
