Alex Mikhalev
7 years ago
18 changed files with 178 additions and 169 deletions
@ -1,76 +0,0 @@
@@ -1,76 +0,0 @@
|
||||
.device { |
||||
.header { |
||||
display: flex !important; |
||||
flex-direction: column; |
||||
@media only screen and (min-width: 768px) { |
||||
flex-direction: row; |
||||
} |
||||
} |
||||
.ui.grid { |
||||
margin-top: 0; |
||||
} |
||||
.connectionState { |
||||
@media only screen and (min-width: 768px) { |
||||
margin-left: .75em; |
||||
} |
||||
font-size: .75em; |
||||
font-weight: lighter; |
||||
|
||||
&.connected { |
||||
color: #13D213; |
||||
} |
||||
|
||||
&.disconnected { |
||||
color: #D20000; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.sectionRunner .queue { |
||||
max-height: 14em; |
||||
height: 14em; |
||||
overflow-y: scroll; |
||||
} |
||||
|
||||
.ui.modal.programEditor > .header > .header.item .inline.fields { |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
.programSequence.editing .item .content { |
||||
width: 20em; |
||||
} |
||||
|
||||
.sectionChooser { |
||||
.ui.selection.dropdown { |
||||
min-width: 12em; |
||||
} |
||||
} |
||||
|
||||
.durationInputs { |
||||
display: flex; |
||||
flex-wrap: wrap; |
||||
margin: -0.5em; |
||||
} |
||||
|
||||
$durationInput-labelWidth: 2.5em; |
||||
|
||||
.ui.form .field .ui.input.durationInput { |
||||
margin: 0.5em; |
||||
|
||||
&.minutes { |
||||
//margin-right: 1em; |
||||
} |
||||
&.seconds { |
||||
|
||||
} |
||||
|
||||
> input { |
||||
flex: 1 0 6em; |
||||
width: 100%; |
||||
} |
||||
|
||||
> .label { |
||||
flex: 0 0 $durationInput-labelWidth; |
||||
text-align: center; |
||||
} |
||||
} |
@ -0,0 +1,51 @@
@@ -0,0 +1,51 @@
|
||||
.device { |
||||
.header { |
||||
display: flex !important; |
||||
flex-direction: column; |
||||
@media only screen and (min-width: 768px) { |
||||
flex-direction: row; |
||||
} |
||||
} |
||||
.ui.grid { |
||||
margin-top: 0; |
||||
} |
||||
.connectionState { |
||||
@media only screen and (min-width: 768px) { |
||||
margin-left: .75em; |
||||
} |
||||
font-size: .75em; |
||||
font-weight: lighter; |
||||
|
||||
&.connected { |
||||
color: #13D213; |
||||
} |
||||
|
||||
&.disconnected { |
||||
color: #D20000; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.section--number, |
||||
.program--number { |
||||
width: 2em |
||||
} |
||||
|
||||
.section--name /*, |
||||
.program--name*/ |
||||
{ |
||||
width: 10em; |
||||
white-space: nowrap; |
||||
} |
||||
|
||||
.section--state { |
||||
|
||||
} |
||||
|
||||
.section-state.running { |
||||
color: green; |
||||
} |
||||
|
||||
.ui.modal.programEditor > .header > .header.item .inline.fields { |
||||
margin-bottom: 0; |
||||
} |
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
.durationInputs { |
||||
display: flex; |
||||
flex-wrap: wrap; |
||||
margin: -0.5em; |
||||
|
||||
&.inline { |
||||
min-width: 30em; |
||||
} |
||||
} |
||||
|
||||
$durationInput-inputWidth: 5em; |
||||
$durationInput-labelWidth: 2.5em; |
||||
|
||||
.ui.form .field .ui.input.durationInput { |
||||
margin: 0.5em; |
||||
|
||||
flex: 1 0 ($durationInput-inputWidth + $durationInput-labelWidth); |
||||
|
||||
> input { |
||||
flex: 1 0 $durationInput-inputWidth; |
||||
min-width: $durationInput-inputWidth; |
||||
width: 100%; |
||||
} |
||||
|
||||
> .label { |
||||
width: $durationInput-labelWidth; |
||||
flex: 0 0 $durationInput-labelWidth; |
||||
text-align: center; |
||||
} |
||||
} |
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
.ui.container.loginPage { |
||||
margin-top: 1em; |
||||
|
||||
.ui.header { |
||||
text-align: center; |
||||
} |
||||
|
||||
/* Mobile */ |
||||
@media only screen and (max-width: 767px) { |
||||
width: auto !important; |
||||
margin-left: 1em !important; |
||||
margin-right: 1em !important; |
||||
} |
||||
|
||||
/* Tablet */ |
||||
@media only screen and (min-width: 768px) and (max-width: 991px) { |
||||
width: 600px; |
||||
} |
||||
|
||||
/* Small Monitor */ |
||||
@media only screen and (min-width: 992px) and (max-width: 1199px) { |
||||
width: 600px; |
||||
} |
||||
|
||||
/* Large Monitor */ |
||||
@media only screen and (min-width: 1200px) { |
||||
width: 800px; |
||||
} |
||||
} |
@ -0,0 +1,10 @@
@@ -0,0 +1,10 @@
|
||||
.messages { |
||||
position: fixed; |
||||
bottom: 1em; |
||||
left: 1em; |
||||
right: 1em; |
||||
padding-left: 0; |
||||
z-index: 1000; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
.programSequence.editing .item .content { |
||||
width: 20em; |
||||
} |
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
.sectionChooser { |
||||
.ui.selection.dropdown { |
||||
min-width: 12em; |
||||
} |
||||
} |
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
.sectionRunner .queue { |
||||
max-height: 14em; |
||||
height: 14em; |
||||
overflow-y: scroll; |
||||
} |
||||
|
||||
.sectionRunner--pausedState { |
||||
padding-left: .75em; |
||||
font-size: .75em; |
||||
font-weight: lighter; |
||||
} |
||||
|
||||
.sectionRunner--pausedState > .fa { |
||||
padding-right: .2em; |
||||
} |
||||
|
||||
.sectionRunner--pausedState-unpaused { |
||||
} |
||||
|
||||
.sectionRun { |
||||
.ui.progress { |
||||
margin: 1em 0 0 !important; |
||||
|
||||
.bar { |
||||
transition: none; |
||||
min-width: 0 !important; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue