Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Tag/styles.css: Difference between revisions

Template page
Content deleted Content added
No edit summary
No edit summary
Line 1: Line 1:
.tag-container {
.tag-container * {
user-select: none;
}

.tag-pill {
user-select: none;
user-select: none;
text-decoration: none !important;
text-decoration: none !important;
Line 12: Line 16:
}
}


.tag-container:hover {
.tag-pill:hover {
color: var( --color-emphasized );
color: var( --color-emphasized );
box-shadow: var( --box-shadow-card );
box-shadow: var( --box-shadow-card );
Line 21: Line 25:
border-right: 1px solid var( --border-color-base );
border-right: 1px solid var( --border-color-base );
margin-right: 0.25em;
margin-right: 0.25em;
}

.tag-symbol,
.tag-text {
text-decoration: none !important;
color: inherit;
user-select: none;
}
}

Revision as of 20:03, 26 December 2024

.tag-container * {
	user-select: none;
}

.tag-pill {
	user-select: none;
	text-decoration: none !important;
	border: 1px solid var( --border-color-base );
	border-radius: var( --border-radius--small );
	padding-left: 0.25em;
	padding-right: 0.25em;
	transition: 100ms;
	background-color: var( --color-surface-1 );
	margin-left: 0.125em;
	margin-right: 0.125em;
}

.tag-pill:hover {
	color: var( --color-emphasized );
	box-shadow: var( --box-shadow-card );
}

.tag-symbol {
	padding-right: 0.25em;
	border-right: 1px solid var( --border-color-base );
	margin-right: 0.25em;
}