little fix

This commit is contained in:
Mirco Wittrien 2019-09-26 12:39:04 +02:00
parent 679f4d0a5a
commit a430da15c3
3 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -6106,7 +6106,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
.BDFDB-modal .tab-content:not(.open) { .BDFDB-modal .tab-content:not(.open) {
display: none; display: none;
} }
.BDFDB-modal .tab-content.open > * { .BDFDB-modal *${BDFDB.notCN.modalsubinner} > .tab-content.open${BDFDB.notCN.modalsubinner} > * {
padding: 0 20px 0 12px; padding: 0 20px 0 12px;
} }
.colorpicker-modal .colorpicker-container { .colorpicker-modal .colorpicker-container {

View File

@ -3,7 +3,7 @@
class ServerFolders { class ServerFolders {
getName () {return "ServerFolders";} getName () {return "ServerFolders";}
getVersion () {return "6.3.8";} getVersion () {return "6.3.9";}
getAuthor () {return "DevilBro";} getAuthor () {return "DevilBro";}
@ -688,7 +688,7 @@ class ServerFolders {
for (let pos of Object.keys(color2).sort()) svg += `<stop offset="${pos * 100}%" style="stop-color: ${color2[pos]};"></stop>`; for (let pos of Object.keys(color2).sort()) svg += `<stop offset="${pos * 100}%" style="stop-color: ${color2[pos]};"></stop>`;
svg += `</linearGradient>`; svg += `</linearGradient>`;
} }
svg += `${paths.replace("REPLACE_FILL1", isgradient1 ? "url(#grad1)" : BDFDB.colorCONVERT(color1, "HEX")).replace("REPLACE_FILL2", isgradient2 ? "url(#grad2)" : BDFDB.colorCONVERT(color2, "HEX"))}</svg>`; svg += `${paths.replace("REPLACE_FILL1", isgradient1 ? "url(#grad1)" : BDFDB.colorCONVERT(color1, "RGBA")).replace("REPLACE_FILL2", isgradient2 ? "url(#grad2)" : BDFDB.colorCONVERT(color2, "RGBA"))}</svg>`;
return `data:image/svg+xml;base64,${btoa(svg)}`; return `data:image/svg+xml;base64,${btoa(svg)}`;
} }