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

50 lines
1.2 KiB
SCSS
Raw Normal View History

@import "variables";
.stream-column {
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: black;
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
}
}