Skip to content

ニコニコ大百科の自動リンクのスタイル変更 by gimmickgang

Screenshot of ニコニコ大百科の自動リンクのスタイル変更

Details

Authorgimmickgang

LicenseCC Zero

Categorydic.nicovideo.jp,ニコニコ大百科,nicovideo

Created

Updated

Size1.1 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

大百科の自動リンクの文字色を元の文字色と同じにして
リンク箇所に点線の下線が入ったニコニコニュースと同様のスタイルにします。

一文字リンクは二重線の下線に変更します。

・マウスオーバーの時に元の色に戻せるようにチェックボックス追加
・一文字リンクの二重線の下線を無くせるようにチェックボックス追加

手動リンクはそのまま。

■適用される範囲
 ・記事本文
 ・掲示板

Notes

@version 1.0.0 Release
@version 1.0.1 New マウスオーバー時と一文字リンクのスタイルを選べるように

Source code

/* ==UserStyle==
@name           自動リンクのスタイル変更
@namespace      userstyles.world/user/gimmickgang
@version        1.0.1
@description    ニコニコ大百科の自動リンクの色を変更してニコニコニュースみたいにします
@author         gimmickgang
@license        No License
@preprocessor	stylus
@var            checkbox link-hover "マウスオーバー時は元のスタイルに戻す" 0
@var            checkbox hdn "一文字リンクに二重下線を付けない" 0

==/UserStyle== */

@-moz-document url-prefix("https://dic.nicovideo.jp/") {

	.auto{
		color: unset !important;
		text-decoration: underline dotted !important;
	}


	.auto-hdn{
		color: unset !important;
		text-decoration: underline double !important;
	}


	if link-hover{

		.auto:hover{
			color : #f80 !important;
			text-decoration: underline !important;
		}

		.auto-hdn:hover{
			color : #f80 !important;
			text-decoration: underline !important;
		}
	}

	if hdn{

		.auto-hdn{
			color: unset !important;
			text-decoration: none !important;
		}
	}

}

Reviews

No reviews yet.