Mizuki Ishikawa
Mizuki Ishikawa
@pepper179 Could you use RedMica 2.1? The problem of not being able to paste images in documents was fixed 3 months ago and has been released in RedMica 2.1. https://redmine.org/issues/36686
問題が発生した環境 - macOS Mojave - Chrome(safariでは再現せず) - Redmine trunkに4.1ブランチのbleuclairを適用
参考: https://stackoverflow.com/questions/52360968/wavy-text-decoration-remains-when-no-longer-hovering-chrome https://www.ossi.co.jp/topics/2013/05/000030.php https://kiyotatsu.com/web13/ Chrome かつ ヒラギノ角ゴPro等、日本語フォントの環境で、 a:hover時にのみtext-decoration: underlineを指定していると発生する。 ``` a:hover, a:active { outline: 1px solid transparent; } ``` のように指定することで対処する。 タブキーなどで要素にフォーカスを当てた状態でカーソルを乗せるとoutlineが消える(透明になる)問題が発生するが、頻度として下線の問題の方が多いためそちらを優先する
上記の対策を行った上でも再発するため、Reopen。 font-familyが `Meiryo, "Hiragino Kaku Gothic Pro", "Hiragino Sans", "MS PGothic", Verdana, system-ui, sans-serif` だったところを `Verdana, "Helvetica Neue","Helvetica", Arial, Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;` に変更したら下線の問題は発生しなくなった。 欧文フォントの指定が日本語フォントより先になく、従属欧文が利用されていたことが関係している?かもしれない。 ただ、上記のfont-family変更による対策を行った場合、...
シンプルな対応としては、hover時に下線を出すのをやめて文字色を赤くするだけにするというものが考えられる。(そもそも下線を出さないため、下線の表示が崩れることもない) ただ、リンクとしては下線が入る動きが一般的なので、それを崩してもリンクだと捉えてもらえるかを試してみてからの変更にする。
@MagicFab Thank you for sharing the results of the operation test. I thought it would be better not to merge this pull request for the following reasons: In this Redmine...
@MagicFab Thank you for your response. > I think it's still valuable to save time to others. I'm sure you're right. The Redmine version corresponding to the install section is...
@ashrafalzyoud > not working when custom_field value list or keyvalue list its multiple value Currently this plugin does not have the ability to make multiple choice pull requests searchable. It...
@D-fujinami Thank you for the feedback. I couldn't reproduce the issue in my environment, but I've updated select2 to version 4.0.13 as a precaution. Could you please check if the...
@nightmeteora Ah, I see, it was influenced by other plugins. If the code you suggested resolves the issue, it seems like a good solution as it would not harm users...