Add an option background color of translation panel
This commit is contained in:
parent
5ff0780d1f
commit
5467ee3596
|
@ -112,6 +112,9 @@
|
||||||
"fontSizeLabel": {
|
"fontSizeLabel": {
|
||||||
"message": "Font size"
|
"message": "Font size"
|
||||||
},
|
},
|
||||||
|
"bgColorLabel": {
|
||||||
|
"message": "Background color"
|
||||||
|
},
|
||||||
|
|
||||||
"informationLabel": {
|
"informationLabel": {
|
||||||
"message": "Information"
|
"message": "Information"
|
||||||
|
|
|
@ -188,7 +188,8 @@ input {
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="number"],
|
input[type="number"],
|
||||||
input[type="text"] {
|
input[type="text"],
|
||||||
|
input[type="color"] {
|
||||||
-moz-appearance: textfield;
|
-moz-appearance: textfield;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
@ -200,8 +201,10 @@ input[type="text"] {
|
||||||
|
|
||||||
input[type="number"]:hover,
|
input[type="number"]:hover,
|
||||||
input[type="text"]:hover,
|
input[type="text"]:hover,
|
||||||
|
input[type="color"]:hover,
|
||||||
input[type="number"]:focus,
|
input[type="number"]:focus,
|
||||||
input[type="text"]:focus {
|
input[type="text"]:focus,
|
||||||
|
input[type="color"]:focus {
|
||||||
border-color: var(--highlight);
|
border-color: var(--highlight);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,6 +212,11 @@ input[type="text"] {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type="color"] {
|
||||||
|
background-color: var(--main-bg);
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
@ -242,6 +242,18 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="optionContainer new">
|
||||||
|
<div class=optionText>
|
||||||
|
<p class=bgColorLabel>背景色</p>
|
||||||
|
</div>
|
||||||
|
<div class=optionForm>
|
||||||
|
<label>
|
||||||
|
<input id=bgColor class=saveByChange type=color value="#ffffff">
|
||||||
|
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -180,6 +180,7 @@ function panelPosition(e) {
|
||||||
panel.style.maxWidth = S.get().width + "px";
|
panel.style.maxWidth = S.get().width + "px";
|
||||||
panel.style.maxHeight = S.get().height + "px";
|
panel.style.maxHeight = S.get().height + "px";
|
||||||
panel.style.fontSize = S.get().fontSize + "px";
|
panel.style.fontSize = S.get().fontSize + "px";
|
||||||
|
panel.style.backgroundColor = S.get().bgColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue