0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Redmine Wiki タグのフォントサイズを変更する

Last updated at Posted at 2023-02-09

TAGのフォントサイズが大きすぎるので変更したい

Redmine Plugin wiki_extensions でWikiにタグを付けることができますが、タグのフォントサイズが大きすぎるので変更したい。

C:\Bitnami\redmine-4.2.3-1\apps\redmine\htdocs\plugins\redmine_wiki_extensions\assets\stylesheets の
wiki_extensions.css を編集します。

下記の箇所の font-size の指定を変更します。元は xx-large / x-large になっています。

wiki_extensuons.css
#wiki_extensions_tag_form .tag_field {
    margin-right: 1em;
}

.tag_level5{
    font-size:large;
}

.tag_level4{
    font-size:medium;
}

.tag_level3{
    font-size:medium;
}

.tag_level2{
    font-size:small;
}

.tag_level1{
    font-size:x-small;
}

変更後、Redmineの再起動・ブラウザのキャッシュクリヤが必要です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?