v2 styling (#263)

* feat: implement progress bar on running event

* refactor: use event action hook

* refactor: align backend data

* style: v2 style tweaks

* style: v2 style tweaks + ts <Info>

* fix: fix delay increment calls

* style: v2 style tweaks + ts <Playback>

* style: v2 style tweaks + ts <EventEditor>

* style: v2 style tweaks + ts <MessageControl>

* fix: naming issue with message control socket endpoint

* chore: upgrade style dependencies

* style: v2 style tweaks + ts <MenuBar>

* style: v2 style tweaks + ts <RundownMenu>

* style: v2 style tweaks + ts <Playback>

* fix: add selected and next information to EventTimer

* style: v2 style tweaks + ts <EventBlock>

* style: v2 style tweaks + ts <DelayBlock>

* style: v2 style tweaks + ts <BlockBlock>

* style: v2 style tweaks + ts <QuickEntry>

* refactor: extract <TextInput> logic

* chore: upgrade build dependencies

* chore: folder structure refactor

* fix: issue with dependency path in electron

* chore: update version in demo db
This commit is contained in:
Carlos Valente
2022-11-27 14:56:09 +01:00
committed by GitHub
parent 3626b5b357
commit d486d78594
104 changed files with 3027 additions and 3217 deletions
+11 -9
View File
@@ -5,12 +5,13 @@
top: $distance;
right: $distance;
cursor: pointer;
color: $ontime-pink;
color: #f2f2f2;
}
.corner {
display: none;
@include absolute-top-right(8px);
transform: rotate(45deg);
}
.mainContainer {
@@ -20,10 +21,11 @@
margin: auto;
color: $title-white;
padding: max(16px, 2vh) max(8px, 1vh);
font-family: "Open Sans", "Segoe UI", sans-serif;
display: grid;
grid-template-rows: auto 1fr;
grid-template-columns: 48px 46em 30em auto;
grid-template-columns: 48px 46em 450px auto;
grid-template-areas:
'sett even play info'
'sett even mess info';
@@ -130,17 +132,17 @@
}
.eventEditor {
border-radius: 3px 3px 0 0;
background-color: $bg-black;
border-radius: 8px 8px 0 0;
background-color: #202020;
box-shadow: rgba(0, 0, 0, 0.35) 0 3px 6px 6px;
border-top: 1px solid $bg-gray-900;
position: absolute;
bottom: 0;
width: 100vw;
max-height: 40vh;
left: 0;
z-index: 10;
color: white;
transition: bottom 0.3s;
transition: bottom 0.3s; // $transition-time
&.noEvent {
bottom: -500px;
@@ -152,7 +154,7 @@
}
.header {
background-color: $bg-black;
background-color: #202020;
padding: 8px;
border-left: 1px solid $bg-container-l3;
}
@@ -186,9 +188,9 @@
.playback {
grid-area: play;
min-height: 275px;
min-height: 250px;
max-height: 380px;
min-width: 480px;
min-width: 450px;
}
.mainContainer > .settings {