From 41abe8b5d57a1105b0b79d582a1c269fc33339a7 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Mon, 2 Jul 2012 20:55:44 +0200 Subject: [PATCH] Close #565 --- 4chan_x.user.js | 13 ++++++++++++- script.coffee | 13 ++++++++++++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 7c3080166..30aa5470a 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1100,7 +1100,7 @@ this.a = $.el('a', { className: 'menu_button', href: 'javascript:;', - innerHTML: '[▼]' + innerHTML: '[]' }); this.el = $.el('div', { className: 'reply dialog', @@ -4999,6 +4999,17 @@ a[href="javascript:;"] {\ display: none !important;\ }\ \ +.menu_button {\ + display: inline-block;\ +}\ +.menu_button > span {\ + border-top: .5em solid;\ + border-right: .3em solid transparent;\ + border-left: .3em solid transparent;\ + display: inline-block;\ + margin: 2px;\ + vertical-align: middle;\ +}\ #menu {\ position: absolute;\ outline: none;\ diff --git a/script.coffee b/script.coffee index d03d5ca02..6d29c21cc 100644 --- a/script.coffee +++ b/script.coffee @@ -837,7 +837,7 @@ Menu = @a = $.el 'a', className: 'menu_button' href: 'javascript:;' - innerHTML: '[▼]' + innerHTML: '[]' @el = $.el 'div', className: 'reply dialog' id: 'menu' @@ -3891,6 +3891,17 @@ a[href="javascript:;"] { display: none !important; } +.menu_button { + display: inline-block; +} +.menu_button > span { + border-top: .5em solid; + border-right: .3em solid transparent; + border-left: .3em solid transparent; + display: inline-block; + margin: 2px; + vertical-align: middle; +} #menu { position: absolute; outline: none;