minor cosmetic hanges to award note

pull/152/head
Aevann 2023-06-08 07:07:08 +03:00
parent a21b2f66b5
commit 411802588e
2 changed files with 18 additions and 2 deletions

View File

@ -7221,6 +7221,22 @@ input[type=number] {
#note {
min-height: 60px;
}
#notelabel {
font-size: 16px;
}
@media (max-width: 767.98px) {
#note, #notelabel {
font-size: 14px !important;
}
}
@media (max-width: 394px) {
#note {
min-height: 80px;
}
}
.collapsed .showmore-text
{

View File

@ -130,12 +130,12 @@ function pick(kind, price, coins, marseybux) {
if (kind == "flairlock") {
document.getElementById('notelabel').innerHTML = "New flair:";
document.getElementById('note').placeholder = "Insert new flair here, or leave empty to add 1 day to the duration of the current flair. 100 characters max.";
document.getElementById('note').placeholder = "Insert new flair here, or leave empty to add 1 day to the duration of the current flair.";
document.getElementById('note').maxLength = 100;
}
else if (kind == "namelock") {
document.getElementById('notelabel').innerHTML = "New username:";
document.getElementById('note').placeholder = "Insert new username here, or leave empty to add 1 day to the duration of the current username. 25 characters max.";
document.getElementById('note').placeholder = "Insert new username here, or leave empty to add 1 day to the duration of the current username.";
document.getElementById('note').maxLength = 25;
}
else {