mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
46 lines
711 B
SCSS
46 lines
711 B
SCSS
// --------------------------------------------------
|
|
// Discourse header
|
|
// --------------------------------------------------
|
|
|
|
.d-header {
|
|
|
|
#site-logo {
|
|
max-width: 125px;
|
|
}
|
|
|
|
// some protection for text-only site titles
|
|
.title {
|
|
max-width: 130px;
|
|
height: 39px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
text-overflow: clip;
|
|
}
|
|
|
|
.icons {
|
|
.badge-notification {
|
|
top: -5px;
|
|
color: $secondary;
|
|
}
|
|
|
|
.active .icon {
|
|
&:after { margin-top: -1px; }
|
|
}
|
|
}
|
|
|
|
button.sign-up-button {
|
|
display:none;
|
|
}
|
|
}
|
|
|
|
#main-outlet {
|
|
padding-top: 60px;
|
|
}
|
|
|
|
.search-link .badge-category {
|
|
display: none;
|
|
}
|
|
|
|
.search-link .topic-statuses .topic-status i {
|
|
font-size: 1em;
|
|
}
|