Template:Tag/styles.css: Difference between revisions
Template page
More actions
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
user-select: none; | user-select: none; | ||
text-decoration: none; | text-decoration: none; | ||
border-radius: var( --border-radius--small ); | border-radius: var( --border-radius--small ); | ||
} | } | ||
| Line 15: | Line 13: | ||
border: 1px solid var( --border-color-base ); | border: 1px solid var( --border-color-base ); | ||
border-radius: var( --border-radius--small ); | border-radius: var( --border-radius--small ); | ||
transition: 100ms; | transition: 100ms; | ||
background-color: var( --color-surface-1 ); | background-color: var( --color-surface-1 ); | ||
Revision as of 20:09, 26 December 2024
.tag-container * {
user-select: none;
text-decoration: none;
border-radius: var( --border-radius--small );
}
.tag-container:hover {
background-color: var( --color-surface-4 );
}
.tag-pill {
user-select: none;
border: 1px solid var( --border-color-base );
border-radius: var( --border-radius--small );
transition: 100ms;
background-color: var( --color-surface-1 );
}
.tag-pill:hover {
color: var( --color-emphasized );
box-shadow: var( --box-shadow-card );
}
.tag-pill:active {
color: var( --color-emphasized );
box-shadow: none;
}
.tag-symbol {
padding-right: 0.25em;
border-right: 1px solid var( --border-color-base );
margin-right: 0.25em;
}