Sengi-Windows-MacOS-Linux/src/app/components/stream/stream.component.scss

54 lines
1.2 KiB
SCSS
Raw Normal View History

@import "variables";
@import "commons";
2019-01-28 07:10:18 +01:00
$stream-header-height: 40px;
.stream-column {
position: relative;
2018-09-19 07:03:07 +02:00
width: $stream-column-width;
height: calc(100%);
2018-10-14 00:23:09 +02:00
background-color: $column-color;
2018-09-19 07:03:07 +02:00
margin: 0 0 0 $stream-column-separator;
2019-01-28 07:10:18 +01:00
&__stream-header {
border-bottom: 1px solid #222736;
}
&__stream-selector {
display: block;
2018-09-19 07:03:07 +02:00
width: calc(100%);
2019-01-28 07:10:18 +01:00
height: $stream-header-height;
background-color: $column-header-background-color;
2019-01-28 07:10:18 +01:00
&:hover {
text-decoration: none;
}
2018-09-19 07:03:07 +02:00
& h1 {
color: whitesmoke;
font-size: 0.8em;
font-weight: normal;
margin: 0;
2019-01-28 07:10:18 +01:00
padding: 13px 0 0 10px;
2018-09-19 07:03:07 +02:00
}
}
}
2018-03-16 04:48:30 +01:00
.stream-statuses {
display: block;
2019-01-28 07:10:18 +01:00
height: calc(100% - #{$stream-header-height});
2018-09-19 07:03:07 +02:00
width: 320px;
2018-03-16 04:48:30 +01:00
}
2018-09-16 19:11:22 +02:00
// .stream-toots {
// height: calc(100% - 30px);
// width: 320px;
// overflow: auto;
// &__status:not(:last-child) {
// border: solid #06070b;
// border-width: 0 0 1px 0;
// }
// }
.stream-overlay {
position: absolute;
z-index: 50;
width: $stream-column-width;
height: calc(100%);
2018-11-08 05:31:47 +01:00
}