2019-02-07 03:34:39 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2019-02-28 03:53:40 +05:30
|
|
|
<style type="text/css">
|
|
|
|
#container {
|
|
|
|
height: 80vh;
|
|
|
|
border: 1px solid black;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionView {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ListView {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionView > .ListView {
|
|
|
|
height: 100%;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
border-right: 1px solid black;
|
|
|
|
list-style: none;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionView > .ListView > li {
|
|
|
|
padding: 10px;
|
|
|
|
border-bottom: 1px solid grey;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionView > .RoomView {
|
|
|
|
padding: 10px;
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionView > .RoomView > .ListView {
|
|
|
|
flex: 1;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
2019-06-02 18:29:30 +05:30
|
|
|
|
|
|
|
.RoomView_error {
|
|
|
|
color: red;
|
|
|
|
}
|
2019-02-28 03:53:40 +05:30
|
|
|
</style>
|
2019-02-07 03:34:39 +05:30
|
|
|
</head>
|
|
|
|
<body>
|
2019-02-16 07:23:02 +05:30
|
|
|
<script type="module">
|
|
|
|
import main from "./src/main.js";
|
2019-06-16 14:24:16 +05:30
|
|
|
main(document.body);
|
2019-02-11 01:55:29 +05:30
|
|
|
</script>
|
2019-02-07 03:34:39 +05:30
|
|
|
</body>
|
2019-02-27 03:15:58 +05:30
|
|
|
</html>
|