mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 02:53:45 +08:00
005e1ecb9b
* First take on subsetting svg icons * FontAwesome 5 svg subset WIP * Include icons from plugins/badges into svg sprite subset * add svg icon support to themes * Add spec for SvgSprite * Misc. SVG icon fixes * Use FA5 svgs in local-dates plugin * CSS adjustments, fix SVG icons in group flair * Use SVG icons in poll plugin * Add SVG icons to /wizard
60 lines
937 B
SCSS
60 lines
937 B
SCSS
// --------------------------------------------------
|
|
// Discourse header
|
|
// --------------------------------------------------
|
|
|
|
#site-text-logo {
|
|
font-size: $font-up-3;
|
|
}
|
|
@include breakpoint(mobile-small) {
|
|
#site-text-logo {
|
|
font-size: $font-up-2;
|
|
}
|
|
}
|
|
|
|
.d-header {
|
|
#site-logo {
|
|
max-width: 8.8em;
|
|
}
|
|
|
|
// some protection for text-only site titles
|
|
.title {
|
|
max-width: 50%;
|
|
height: 39px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
text-overflow: clip;
|
|
display: table;
|
|
a {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
button.sign-up-button {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.d-header-icons {
|
|
.d-icon {
|
|
line-height: $line-height-medium;
|
|
}
|
|
.active .icon {
|
|
&:after {
|
|
margin-top: -1px;
|
|
}
|
|
}
|
|
}
|
|
|
|
#main-outlet {
|
|
padding-top: 4.2857em;
|
|
}
|
|
|
|
.search-link .badge-category {
|
|
display: none;
|
|
}
|
|
|
|
.search-link .topic-statuses .topic-status .d-icon {
|
|
font-size: $font-0;
|
|
}
|