discourse/app/assets/stylesheets/embed.scss

237 lines
3.7 KiB
SCSS
Raw Normal View History

@import "./vendor/normalize";
@import "./common/foundation/base";
@import "./common/foundation/variables";
@import "./common/foundation/colors";
2015-08-19 14:14:39 -04:00
@import "./common/foundation/mixins";
article.post {
border-bottom: 1px solid #ddd;
2016-05-26 04:08:48 -04:00
img.avatar {
border-radius: 50%;
}
&.deleted {
background-color: #ffe5e5;
}
.quote .title {
border-left: 5px solid darken($primary-low, 5%);
padding: 10px 10px 0 12px;
.avatar {
margin-right: 7px;
}
}
ol,
ul {
clear: none;
}
blockquote {
padding: 10px 8px 10px 13px;
margin: 0 0 10px 0;
border-left: 5px solid darken($primary-low, 5%);
p {
margin: 0 0 10px 0;
}
p:last-of-type {
margin-bottom: 0;
}
}
.post-date {
float: right;
color: #aaa;
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
margin: 10px 4px 0 0;
}
.author {
padding: 10px 5px;
float: left;
img {
max-width: 45px;
border-radius: 50%;
}
}
.cooked {
padding: 10px 0;
2014-05-09 16:12:21 -04:00
margin-left: 65px;
2014-03-22 18:05:38 -04:00
word-wrap: break-word;
word-break: break-word;
pre {
white-space: pre-wrap;
}
img {
max-width: 100%;
height: auto;
}
p {
margin: 0 0 1em 0;
}
}
}
.username {
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
margin: 0 0 10px 0;
a {
color: #5c5c5c;
}
a.staff {
background-color: #ffffc2;
}
a.new-user {
2017-10-10 16:07:46 -04:00
color: dark-light-choose($primary-low-mid, $secondary-high);
}
span.title {
font-weight: normal;
color: #999;
}
}
2014-03-19 17:51:06 -04:00
img.emoji {
width: 20px;
height: 20px;
}
2014-01-03 12:52:24 -05:00
.in-reply-to {
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
2014-05-09 16:12:21 -04:00
text-align: center;
2014-05-10 02:20:23 -04:00
margin: 10px 20px 6px 0;
2014-01-03 12:52:24 -05:00
display: inline-block;
2014-05-09 16:12:21 -04:00
float: right;
color: #0088cc;
2014-01-03 12:52:24 -05:00
}
.replies {
2018-01-12 17:27:38 -05:00
font-size: $font-0;
2014-01-03 12:52:24 -05:00
color: #999;
}
.clearfix {
clear: both;
}
header.discourse {
padding-left: 10px;
padding-right: 10px;
padding-bottom: 8px;
2018-01-12 17:27:38 -05:00
font-size: $font-up-2;
border-bottom: 3px solid #ddd;
2015-09-18 15:36:40 -04:00
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
h3 {
margin: 0 auto 0 0;
2018-01-12 17:27:38 -05:00
font-size: $font-0;
2015-09-18 05:44:13 -04:00
}
}
.embed-error {
padding: 0 10px;
}
footer {
2018-01-12 17:27:38 -05:00
font-size: $font-up-2;
2015-09-18 15:36:40 -04:00
margin-top: 0.5em;
.button {
color: white;
padding: 6px 8px;
background-color: #0088cc;
2015-09-18 15:36:40 -04:00
display: inline-block;
}
}
.logo {
float: right;
max-height: 30px;
}
// load onebox CSS at the end
@import "./common/base/onebox";
2016-05-26 04:08:48 -04:00
// we apparently use bottom margins on paras in the embed CSS, leading to weirdness
// which we will now clean up
aside.onebox {
margin-bottom: 20px;
p {
margin-bottom: 0 !important;
}
}
2016-05-26 04:16:33 -04:00
// images large enough for the lightbox wrapper don't have bottom margins
// either, unless we add one now
div.lightbox-wrapper {
margin-bottom: 20px;
}
.topics-list {
width: 100%;
.topic-list-item {
clear: both;
.main-link {
2019-08-29 14:23:42 -04:00
border-bottom: 1px solid $primary-low;
padding: 0.5rem;
width: 100%;
a {
color: $primary;
}
a:visited {
color: $primary-medium;
}
}
2019-09-09 12:03:53 -04:00
.topic-column-wrapper {
2019-09-04 10:51:58 -04:00
display: flex;
2019-09-09 12:03:53 -04:00
.topic-column.details-column {
2019-09-04 10:51:58 -04:00
flex-direction: column;
width: 80%;
.topic-last-posted-at,
.topic-author-avatar-timestamp,
.topic-stats {
padding-top: 5px;
}
.topic-author-avatar-timestamp img {
max-height: 20px;
}
.topic-created-at {
padding-left: 5px;
vertical-align: middle;
}
.topic-last-posted-at,
.topic-created-at,
.topic-stats {
color: $primary-medium;
}
}
2019-09-09 12:03:53 -04:00
.topic-column.featured-image-column {
2019-09-04 10:51:58 -04:00
.topic-featured-image img {
max-width: 200px;
max-height: 100px;
}
}
}
}
}