mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
fix msg container
This commit is contained in:
parent
69ba10a898
commit
9b2e4f40c9
3 changed files with 30 additions and 10 deletions
|
@ -39,9 +39,17 @@
|
|||
></video>
|
||||
</div>
|
||||
|
||||
<div id="info-">
|
||||
<div id="info">
|
||||
{{ streamStatus }} {{ viewerCount }} {{ 'viewer' | plural(viewerCount) }}.
|
||||
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only fpesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
|
||||
Heart rate notifications.
|
||||
Apple Watch checks for unusually high or low heart rates in the background, which could be signs of a serious underlying condition. This could help you and your patients identify situations which may warrant further evaluation.
|
||||
<br>
|
||||
If a patient’s heart rate is above 120 bpm or below 40 bpm while they appear to have been inactive for 10 minutes, the user will receive a notification. Patients can adjust the threshold bpm or turn these notifications on or off. All heart rate notifications — along with date, time, and heart rate — can be viewed in the Health app on iPhone.
|
||||
<br>
|
||||
Heart rate notifications.
|
||||
Apple Watch checks for unusually high or low heart rates in the background, which could be signs of a serious underlying condition. This could help you and your patients identify situations which may warrant further evaluation.
|
||||
<br>
|
||||
If a patient’s heart rate is above 120 bpm or below 40 bpm while they appear to have been inactive for 10 minutes, the user will receive a notification. Patients can adjust the threshold bpm or turn these notifications on or off. All heart rate notifications — along with date, time, and heart rate — can be viewed in the Health app on iPhone.
|
||||
|
||||
|
||||
</div>
|
||||
|
@ -52,6 +60,9 @@
|
|||
|
||||
<div id="chat-container">
|
||||
<div id="messages-container">
|
||||
Heart rate notifications.
|
||||
Apple Watch checks for unusually high or low heart rates in the background, which could be signs of a serious underlying condition. This could help you and your patients identify situations which may warrant further evaluation.— can be viewed in the Health app on iPhone.
|
||||
|
||||
<div v-for="(message, index) in messages">
|
||||
|
||||
<div class="message flex">
|
||||
|
@ -70,6 +81,7 @@
|
|||
|
||||
<div id="chat-input-container" class="shadow-md">
|
||||
<form id="chat-form" class="flex" @submit="submitChatForm">
|
||||
<input type="hidden" name="inputAuthor" id="inputAuthor" v-model="message.author" />
|
||||
|
||||
<!-- Author -->
|
||||
<!-- <label class="control-label" for="inputAuthor">Author</label>
|
||||
|
|
|
@ -8,7 +8,7 @@ function setupApp() {
|
|||
})
|
||||
|
||||
window.app = new Vue({
|
||||
el: "#app",
|
||||
el: "#info",
|
||||
data: {
|
||||
streamStatus: "",
|
||||
viewerCount: 0,
|
||||
|
|
|
@ -2,12 +2,15 @@
|
|||
:root {
|
||||
--header-height: 3em;
|
||||
--right-col-width: 24em;
|
||||
|
||||
--chat-bg-color: rgba(11,0,33,.95);
|
||||
--header-bg-color: rgba(20,0,40,1);
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
font-size: 14px;
|
||||
background-color: #ccc;
|
||||
background-color: #666;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 0px;
|
||||
|
@ -29,7 +32,7 @@ header {
|
|||
height: var(--header-height);
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: rgba(20,0,40,1);
|
||||
background-color: var(--header-bg-color);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
|
@ -77,13 +80,18 @@ header h1 {
|
|||
right: 0;
|
||||
height: 100%;
|
||||
width: var(--right-col-width);
|
||||
background-color: rgba(20,0,40,.5);
|
||||
height: calc(100vh - var(--header-height))
|
||||
background-color: var(--chat-bg-color);
|
||||
height: calc(100vh - var(--header-height));
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
#messages-container {
|
||||
overflow: auto;
|
||||
padding: 1em 0;
|
||||
}
|
||||
|
||||
#chat-input-container {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
border-top: 1px solid #eee;
|
||||
padding: 1em;
|
||||
|
|
Loading…
Reference in a new issue