More actions
Content deleted Content added
Alistair3149 (talk | contribs) No edit summary |
Alistar Bot (talk | contribs) m →top: clean up, replaced: --line-height-sm → --line-height-xx-small |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
padding: var( --space-sm ) var( --space-md ); |
padding: var( --space-sm ) var( --space-md ); |
||
border: 1px solid var( --border-color-base ); |
border: 1px solid var( --border-color-base ); |
||
border-radius: var( --border-radius |
border-radius: var( --border-radius-medium ); |
||
display: flex; |
display: flex; |
||
align-items: center; |
align-items: center; |
||
Line 12: | Line 12: | ||
font-size: 0.875rem; |
font-size: 0.875rem; |
||
text-decoration: none; |
text-decoration: none; |
||
line-height: var( --line-height- |
line-height: var( --line-height-xx-small ); |
||
} |
} |
||
Line 20: | Line 20: | ||
.t-finditemuif a:hover { |
.t-finditemuif a:hover { |
||
background: var( --background-color-quiet--hover ); |
background: var( --background-color-button-quiet--hover ); |
||
} |
} |
||
.t-finditemuif a:active { |
.t-finditemuif a:active { |
||
background: var( --background-color-quiet--active ); |
background: var( --background-color-button-quiet--active ); |
||
} |
} |
||
Line 32: | Line 32: | ||
.t-finditemuif__title { |
.t-finditemuif__title { |
||
color: var( --color |
color: var( --color-emphasized ); |
||
font-weight: var( --font-weight-medium ); |
font-weight: var( --font-weight-medium ); |
||
} |
} |
||
.t-finditemuif__subtitle { |
.t-finditemuif__subtitle { |
||
color: var( --color |
color: var( --color-subtle ); |
||
font-size: 0.8125rem; |
font-size: 0.8125rem; |
||
} |
} |
Latest revision as of 01:14, 6 January 2025
.t-finditemuif {
margin-top: var( --space-md );
}
.t-finditemuif a {
padding: var( --space-sm ) var( --space-md );
border: 1px solid var( --border-color-base );
border-radius: var( --border-radius-medium );
display: flex;
align-items: center;
gap: var( --space-sm );
font-size: 0.875rem;
text-decoration: none;
line-height: var( --line-height-xx-small );
}
.t-finditemuif a::after {
display: none;
}
.t-finditemuif a:hover {
background: var( --background-color-button-quiet--hover );
}
.t-finditemuif a:active {
background: var( --background-color-button-quiet--active );
}
.t-finditemuif__label {
flex-grow: 1;
}
.t-finditemuif__title {
color: var( --color-emphasized );
font-weight: var( --font-weight-medium );
}
.t-finditemuif__subtitle {
color: var( --color-subtle );
font-size: 0.8125rem;
}
.t-finditemuif .mw-ui-icon-wikimedia-collapse {
width: 1rem;
height: 1rem;
transform: rotate( 90deg );
transition: var( --transition-hover );
}
.t-finditemuif a:hover .mw-ui-icon-wikimedia-collapse {
transform: rotate( 90deg ) translateY( -4px );
}