TeaWeb/shared/css/static/modal-poke.scss

96 lines
1.6 KiB
SCSS
Raw Normal View History

2018-11-03 23:39:29 +00:00
.container-poke {
display: flex!important;;
flex-direction: column!important;;
2018-11-03 23:39:29 +00:00
2019-05-25 17:06:57 +00:00
.container-servers {
display: flex;
flex-direction: column;
justify-content: stretch;
.server {
display: flex;
flex-direction: column;
justify-content: stretch;
.server-name {
margin-top: 5px;
flex-grow: 0;
flex-shrink: 0;
font-weight: bold;
text-decoration: underline;
}
.poke-list {
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow-y: auto;
overflow-x: auto;
.entry {
display: flex;
flex-direction: row;
justify-content: flex-start;
2018-11-03 23:39:29 +00:00
2019-05-25 17:06:57 +00:00
flex-shrink: 0;
flex-grow: 0;
2018-11-03 23:39:29 +00:00
2019-05-25 17:06:57 +00:00
> * {
white-space: nowrap;
}
.date, .user, .text {
margin-right: 5px;
}
.date {
color: cornflowerblue;
}
.text {
color: #004d00;
}
}
}
2018-11-03 23:39:29 +00:00
}
}
2019-05-25 17:06:57 +00:00
.buttons {
display: flex;
flex-direction: row;
justify-content: stretch;
2018-11-03 23:39:29 +00:00
margin-top: 5px;
2019-05-25 17:06:57 +00:00
flex-shrink: 0;
flex-grow: 0;
.spacer {
flex-grow: 1;
flex-shrink: 1;
}
.button-close {
flex-grow: 0;
flex-shrink: 0;
margin-top: 5px;
width: 150px;
float: right;
}
2018-11-03 23:39:29 +00:00
}
}
/*
<script class="jsrender-template" id="tmpl_poke_popup" type="text/html">
<div class="container-poke">
<div class="container-information">
<a>You have been poked by </a><node key="invoker"></node><a>:</a>
</div>
<div class="container-message">
<a class="message">{{>message}}</a>
</div>
</div>
</script>
*/