Browse Source

Fix lightbox errors

master
yflory 9 months ago
parent
commit
0f21f3118b
2 changed files with 3 additions and 0 deletions
  1. 1
      customize.dist/src/less2/include/modals-ui-elements.less
  2. 2
      www/common/inner/common-mediatag.js

1
customize.dist/src/less2/include/modals-ui-elements.less

@ -140,6 +140,7 @@
}
pre.mermaid {
overflow: unset;
margin-bottom: 0;
}
.cp-spinner {
border-color: @colortheme_logo-1;

2
www/common/inner/common-mediatag.js

@ -299,9 +299,11 @@ define([
show(i);
var previous = function () {
if (i === 0) { return; }
show(i - 1);
};
var next = function () {
if (i === tags.length - 1) { return; }
show(i + 1);
};
$left.click(previous);

Loading…
Cancel
Save