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

104 lines
2.4 KiB
SCSS
Raw Normal View History

@import "variables";
.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;
&__stream-header {
width: calc(100%);
height: 30px;
background-color: $column-header-background-color;
2018-09-19 07:03:07 +02:00
border-bottom: 1px solid black;
& h1 {
color: whitesmoke;
font-size: 0.8em;
font-weight: normal;
margin: 0;
padding: 8px 0 0 10px;
}
}
}
2018-03-16 04:48:30 +01:00
.stream-toots {
2018-09-19 07:03:07 +02:00
height: calc(100% - 30px);
width: 320px;
overflow: auto;
&__status:not(:last-child) {
border: solid #06070b;
border-width: 0 0 1px 0;
}
2018-03-16 04:48:30 +01:00
}
2018-09-16 19:11:22 +02:00
.flexcroll {
scrollbar-face-color: #08090d;
2018-09-22 05:15:02 +02:00
scrollbar-shadow-color: #08090d;
2018-09-16 19:11:22 +02:00
scrollbar-highlight-color: #08090d;
scrollbar-3dlight-color: #08090d;
scrollbar-darkshadow-color: #08090d;
scrollbar-track-color: #08090d;
scrollbar-arrow-color: #08090d;
&::-webkit-scrollbar {
width: 7px;
}
&::-webkit-scrollbar-thumb {
-webkit-border-radius: 0px;
border-radius: 0px;
2018-09-21 03:52:04 +02:00
// background: #08090d;
background: lighten($color-primary, 5);
2018-09-22 05:15:02 +02:00
// -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
2018-09-16 19:11:22 +02:00
}
}
.stream-overlay {
position: absolute;
z-index: 50;
width: $stream-column-width;
height: calc(100%);
// background-color: rgba(#ff0000, 0.3);
// // margin: 0 0 0 $stream-column-separator;
// // outline: 1px red solid;
// // float: left;
// &__header {
// width: calc(100%);
// height: 30px;
// background-color: $column-header-background-color;
// padding: 6px 10px 0 10px;
// & a {
// color: whitesmoke;
// font-size: 0.8em;
// font-weight: normal;
// margin: 0;
// }
// }
// &__title {
// width: calc(100%);
// height: 30px;
// background-color: $column-header-background-color;
// border-top: 1px solid whitesmoke;
// border-bottom: 1px solid whitesmoke;
// padding: 3px 10px 0 10px;
// }
}
// .overlay-previous {
// display: block;
// float: left;
// }
// .overlay-next {
// display: block;
// float: right;
// padding-right: 20px;
// }
// .overlay-close {
// display: block;
// float: right;
// }