discourse/app/assets/stylesheets/common/topic-timeline.scss
Penar Musaraj c937afc75e
FEATURE: automatic dark mode (#10341)
A first step to adding automatic dark mode color scheme switching. Adds a new SCSS file at `color_definitions.scss` that serves to output all SCSS color variables as CSS custom properties. And replaces all SCSS color variables with the new CSS custom properties throughout the stylesheets. 

This is an alpha feature at this point, can only be enabled via console using the `default_dark_mode_color_scheme_id` site setting.
2020-08-03 22:57:10 -04:00

277 lines
5.6 KiB
SCSS

.timeline-loading {
width: 900px;
}
.timeline-container {
box-sizing: border-box;
z-index: z("timeline");
margin-left: 757px;
@include breakpoint(extra-large, min-width) {
margin-left: 820px;
}
@media all and (min-width: 1250px) {
margin-left: 900px;
}
position: fixed;
-webkit-transform: translate3d(0, 0, 0);
&.timeline-docked {
position: absolute;
}
&.timeline-docked-bottom {
.timeline-footer-controls {
opacity: 0;
pointer-events: none;
cursor: default;
height: 0px;
}
}
&.timeline-fullscreen.show {
max-height: 700px;
transition: max-height 0.4s ease-out;
@media screen and (max-height: 425px) {
max-height: 75vh;
}
.topic-timeline {
.timeline-footer-controls {
display: inherit;
}
}
.timeline-controls {
display: table-cell;
vertical-align: top;
}
}
&.timeline-fullscreen {
max-height: 0;
transition: max-height 0.3s ease-in;
position: fixed;
margin-left: 0;
background-color: var(--secondary);
bottom: 0;
left: 0;
right: 0;
border-top: 1px solid var(--primary-low);
box-shadow: shadow("composer");
padding: 20px 0px;
z-index: z("fullscreen");
@media screen and (max-height: 425px) {
padding-top: 10px;
}
.back-button {
display: none;
}
.topic-timeline {
width: 100%;
table-layout: fixed;
margin-left: 0;
margin-right: 0;
display: table;
touch-action: none;
.timeline-date-wrapper {
float: right;
text-align: right;
}
.post-excerpt {
max-width: 650px;
line-height: $line-height-large;
display: block;
@include line-clamp(8);
@media screen and (max-height: 425px) {
-webkit-line-clamp: 5;
}
}
.username {
color: var(--primary-high-or-secondary-low);
word-wrap: break-word;
font-weight: bold;
}
.title {
margin-top: 0;
padding-left: 1em;
display: table-cell;
vertical-align: top;
width: 100%;
h2 {
margin-top: 0;
display: block;
line-height: $line-height-medium;
font-size: $font-up-2;
@include line-clamp(4);
}
a {
color: var(--primary);
}
}
.timeline-last-read {
right: 0;
margin-left: 0;
.progress {
display: none;
}
}
.timeline-footer-controls {
display: none;
position: absolute;
bottom: 20px;
left: 10px;
button,
.btn-group {
margin-bottom: 0;
margin-right: 15px;
}
.widget-component-connector {
vertical-align: top;
}
}
.timeline-scrollarea-wrapper {
display: table-cell;
padding-right: 1.5em;
width: 100px;
}
.timeline-scrollarea {
border-left: 0;
border-right-style: solid;
border-right-width: 1px;
max-width: 120px;
float: right;
.timeline-scroller {
position: relative;
margin-right: -1.5em;
padding-right: 1.5em;
justify-content: flex-end;
.timeline-scroller-content {
text-align: right;
padding-left: 0;
padding-right: 1em;
}
.timeline-handle {
float: none;
width: 11px;
position: relative;
right: -6px;
}
}
}
}
.timeline-scrollarea-wrapper::after {
content: "";
display: table;
clear: both;
}
}
.topic-timeline {
margin-left: 3em;
transition: opacity 0.2s ease-in;
touch-action: none;
.timeline-controls {
margin-bottom: 1em;
}
.timeline-footer-controls {
margin-top: 1.5em;
transition: opacity 0.2s ease-in;
display: flex;
.reply-to-post {
margin-right: 0.5em;
}
button:last-child {
margin-right: 0;
}
}
.start-date {
@include unselectable;
color: var(--primary-med-or-secondary-med);
}
.timeline-scrollarea {
margin-top: 0.5em;
margin-left: 0.5em;
border-left: 1px solid;
border-color: var(--tertiary-low-or-tertiary-high);
position: relative;
-webkit-transform: translate3d(0, 0, 0);
}
.timeline-padding {
transition: height 0.15s ease-out;
cursor: pointer;
.widget-dragging & {
transition: none;
}
}
.timeline-handle {
border-radius: 0.8em;
width: 0.35em;
background-color: var(--tertiary-low-or-tertiary-high);
height: 100%;
float: left;
z-index: z("base") + 1;
}
.timeline-scroller-content {
padding-left: 1em;
}
.timeline-ago {
color: var(--primary-med-or-secondary-med);
}
.timeline-scroller {
@include unselectable;
margin-left: -0.19em;
cursor: ns-resize;
display: flex;
align-items: center;
.back-button {
margin-top: 1em;
}
}
.timeline-replies {
font-weight: bold;
}
.timeline-last-read {
position: absolute;
margin-left: -0.35em;
.progress {
font-size: 0.8em;
color: var(--tertiary);
margin-right: 1em;
}
z-index: z("base") + 2; // above timeline-handle
}
.back-button {
min-height: unset;
padding: 2px 5px;
}
.now-date {
@include unselectable;
display: inline-block;
color: var(--primary-med-or-secondary-med);
margin-top: 0.5em;
}
}
}