diff --git a/dashboard-ui/css/metadataeditor.css b/dashboard-ui/css/metadataeditor.css
index 5e7cf01310..53ee6065fc 100644
--- a/dashboard-ui/css/metadataeditor.css
+++ b/dashboard-ui/css/metadataeditor.css
@@ -207,11 +207,35 @@
margin-right: 10px;
}
+.subtitleViewerContent {
+ overflow: auto;
+ width: 200px;
+ height: 200px;
+}
+
+@media all and (min-width: 400px) {
+
+ .subtitleViewerContent {
+ width: 300px;
+ }
+}
+
+@media all and (min-width: 500px) {
+
+ .subtitleViewerContent {
+ width: 400px;
+ }
+}
+
@media all and (min-width: 600px) {
.popupIdentify {
width: 400px;
}
+
+ .subtitleViewerContent {
+ width: 500px;
+ }
}
@media all and (min-width: 700px) {
@@ -223,6 +247,10 @@
.popupIdentify {
width: 500px;
}
+
+ .subtitleViewerContent {
+ width: 600px;
+ }
}
@media all and (min-width: 800px) {
@@ -344,6 +372,10 @@
.popupIdentify form, .identificationSearchResults {
height: 350px;
}
+
+ .subtitleViewerContent {
+ height: 400px;
+ }
}
@media all and (min-height: 600px) {
@@ -355,6 +387,10 @@
.collectionItemSearchResults {
max-height: 70%;
}
+
+ .subtitleViewerContent {
+ height: 500px;
+ }
}
@media all and (min-height: 700px) {
@@ -366,6 +402,10 @@
.collectionItemSearchResults {
max-height: 75%;
}
+
+ .subtitleViewerContent {
+ height: 600px;
+ }
}
@media all and (min-height: 800px) {
diff --git a/dashboard-ui/edititemimages.html b/dashboard-ui/edititemimages.html
index cb786817a5..87eb27f2c0 100644
--- a/dashboard-ui/edititemimages.html
+++ b/dashboard-ui/edititemimages.html
@@ -18,6 +18,7 @@
' + (s.Language || 'Unknown language') + '
'; + + if (s.IsDefault || s.IsForced) { + + var atts = []; + + if (s.IsDefault) { + + atts.push('Default'); + } + if (s.IsForced) { + + atts.push('Forced'); + } + + itemHtml += '' + atts.join(', ') + '
'; + } + + if (s.Path) { + itemHtml += '' + (s.Path) + '
'; + } + + itemHtml += ''; + + if (s.Path) { + itemHtml += 'Delete'; + } else { + itemHtml += ' '; + } + + itemHtml += '' + (result.Format) + '
'; + + if (result.Comment) { + html += '' + (result.Comment) + '
'; + } + + html += '