Fix various elements to use standard font sizes instead of ad-hoc sizes. Noticeable changes: * Tags in autocomplete are slightly smaller. * The favorite heart icon on posts is slightly smaller. * Pool titles on thumbnails in the pool gallery page are slightly bigger. * The page footer is slightly smaller. * Timestamps on comments and forum posts are very slightly smaller. * "Pending"/"approved"/"rejected" labels on forum posts are very slightly smaller.
33 lines
695 B
SCSS
33 lines
695 B
SCSS
div.source-data {
|
|
border-radius: 4px;
|
|
border: 1px solid var(--fetch-source-data-border-color);
|
|
|
|
&:not(.loading) .source-data-loading { display: none; }
|
|
&.loading .source-data-content { display: none; }
|
|
&.loading .source-data-fetch { display: none; }
|
|
|
|
th {
|
|
padding-right: 1rem;
|
|
padding-bottom: 0.25rem;
|
|
}
|
|
|
|
td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.icon {
|
|
height: var(--text-lg);
|
|
font-size: var(--text-lg);
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.source-data-tag {
|
|
display: inline-block;
|
|
background-color: var(--wiki-page-other-name-background-color);
|
|
padding: 0 0.25rem;
|
|
margin-right: 0.25rem;
|
|
margin-bottom: 0.25rem;
|
|
border-radius: 0.25rem;
|
|
}
|
|
}
|