Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Please sign up or log in to edit the wiki.

Template:Find item UIF/styles.css: Difference between revisions

Template page
Content deleted Content added
Created page with ".t-finditemuif a { } .t-finditemuif a::after { display: none; }"
 
No edit summary
Line 1: Line 1:
.t-finditemuif a {
.t-finditemuif a {
background: var( --color-surface-2 );
padding: var( --space-sm ) var( --space-md );
border-radius: var( --border-radius--medium );
display: flex;
flex-direction: column;
align-items: center;
font-size: 0.875rem;
text-decoration: none;
}
}


.t-finditemuif a::after {
.t-finditemuif a::after {
display: none;
display: none;
}

.t-finditemuif a:hover {
background: var( --color-surface-2--hover );
}

.t-finditemuif a:active {
background: var( --color-surface-2--active );
}

.t-finditemuif__title {
color: var( --color-base--emphasized );
font-weight: var( --font-weight-medium );
}

.t-finditemuif__subtitle {
color: var( --color-base--subtle );
font-size: 0.8125rem;
}
}

Revision as of 18:26, 27 January 2024

.t-finditemuif a {
	background: var( --color-surface-2 );
	padding: var( --space-sm ) var( --space-md );
    border-radius: var( --border-radius--medium );
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    text-decoration: none;
}

.t-finditemuif a::after {
	display: none;
}

.t-finditemuif a:hover {
	background: var( --color-surface-2--hover );
}

.t-finditemuif a:active {
	background: var( --color-surface-2--active );
}

.t-finditemuif__title {
	color: var( --color-base--emphasized );
    font-weight: var( --font-weight-medium );
}

.t-finditemuif__subtitle {
    color: var( --color-base--subtle );
    font-size: 0.8125rem;
}