81 lines
No EOL
1.5 KiB
SCSS
81 lines
No EOL
1.5 KiB
SCSS
@import "../../../css/static/properties";
|
|
@import "../../../css/static/mixin";
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: stretch;
|
|
|
|
border-radius: .2em;
|
|
border: 1px solid #111112;
|
|
|
|
background-color: #17171a;
|
|
|
|
.categories {
|
|
height: 2.5em;
|
|
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: stretch;
|
|
|
|
.entry {
|
|
padding: .5em;
|
|
|
|
text-align: center;
|
|
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
|
|
cursor: pointer;
|
|
border-bottom: 1px solid #1d1d1d;
|
|
transition: $button_hover_animation_time;
|
|
|
|
&.selected {
|
|
border-bottom: 3px solid #245184;
|
|
margin-bottom: -1px;
|
|
|
|
color: #245184;
|
|
}
|
|
|
|
&:hover {
|
|
color: #5f95d3;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bodies {
|
|
position: relative;
|
|
|
|
flex-shrink: 1;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
justify-content: stretch;
|
|
|
|
min-height: 12em;
|
|
height: 20em;
|
|
|
|
.body {
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
|
|
padding: .5em;
|
|
|
|
display: flex;
|
|
justify-content: stretch;
|
|
|
|
overflow: auto;
|
|
@include chat-scrollbar-vertical();
|
|
|
|
&.hidden {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
} |