discourse/app/assets/stylesheets/common/components/banner.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
877 B
SCSS
Raw Normal View History

2014-06-18 14:04:10 -04:00
// --------------------------------------------------
// Banner
// --------------------------------------------------
2015-03-30 04:42:14 -04:00
#banner {
padding: 1em;
background: var(--tertiary-low);
color: var(--primary);
z-index: z("base") + 1;
margin-bottom: 1em;
max-height: 20vh;
overflow: auto;
.floated-buttons {
float: right;
display: flex;
> .btn {
padding-top: 0em;
padding-bottom: 0em;
color: var(--primary-high);
.d-icon {
color: var(--primary-medium);
}
&:hover {
color: var(--primary);
.d-icon {
color: var(--primary-high);
}
}
}
.desktop-view & .btn.close {
margin-left: 0.25em;
}
2014-06-18 14:04:10 -04:00
}
}
#banner-content {
hr {
border-color: var(--primary-medium);
}
> p:first-child {
margin-top: 0;
}
> p:last-of-type {
margin-bottom: 0;
}
}