diff --git a/plugins/eos/styles.css b/plugins/eos/styles.css
index 7f17bbd..2d3db83 100644
--- a/plugins/eos/styles.css
+++ b/plugins/eos/styles.css
@@ -3,6 +3,7 @@ table {
border: #404040 1px solid;
border-radius: 4px;
color: #a59baa;
+ width: 100%;
}
th {
font-size: 14px;
@@ -62,6 +63,16 @@ tr.active-cue .time {
border-color: #c78b07;
}
+.list_name {
+ color: lightgray;
+ margin-left: 5px;
+ margin-bottom: 2px;
+}
+
+.list_container {
+ margin-bottom: 10px;
+}
+
@media screen and (min-width: 0px) and (max-width: 750px) {
.hide-medium {
display: none;
diff --git a/plugins/eos/template.ejs b/plugins/eos/template.ejs
index f3ccbca..5819ffb 100644
--- a/plugins/eos/template.ejs
+++ b/plugins/eos/template.ejs
@@ -11,37 +11,39 @@
<% for(var i in data.EOS.cueLists){ %>
- List <%= i %>
-
-
- | Cue |
- Int Up |
- Int Down |
- Focus |
- Color |
- Beam |
- Dur |
- M |
- B |
- A |
- Fw/Hg |
- Label |
- Ext Links |
-
+
+
List <%= i %>
+
+
+ | Cue |
+ Int Up |
+ Int Down |
+ Focus |
+ Color |
+ Beam |
+ Dur |
+ M |
+ B |
+ A |
+ Fw/Hg |
+ Label |
+ Ext Links |
+
- <% var cues = Object.keys(data.EOS.cueLists[i]).sort(function(a, b){return Number(a)-Number(b)}) %>
+ <% var cues = Object.keys(data.EOS.cueLists[i]).sort(function(a, b){return Number(a)-Number(b)}) %>
- <% for(var j=0; j
- <% var q = data.EOS.cueLists[i][cues[j]] %>
-
- <%= cueTemplate({
- q: q,
- cues: cues,
- cueNumber: cues[j],
- isActive: (cues[j]==data.EOS.activeCue+"")
- }) %>
+ <% for(var j=0; j
+ <% var q = data.EOS.cueLists[i][cues[j]] %>
+
+ <%= cueTemplate({
+ q: q,
+ cues: cues,
+ cueNumber: cues[j],
+ isActive: (cues[j]==data.EOS.activeCue+"")
+ }) %>
- <% } %>
-
+ <% } %>
+
+
<% } %>