width fix for QuickReply settings boxes

This commit is contained in:
RossAscends
2023-06-05 06:24:02 +09:00
parent b821312835
commit 71825691b5
2 changed files with 9 additions and 5 deletions

View File

@ -122,23 +122,23 @@ jQuery(async () => {
</label> </label>
<small><i>Customize your Quick Replies:</i></small><br> <small><i>Customize your Quick Replies:</i></small><br>
<div class="flex-container alignitemsflexstart"> <div class="flex-container alignitemsflexstart">
<input class="text_pole widthUnset" id="quickReply1Label" placeholder="(Add a button label)"> <input class="text_pole wide30p" id="quickReply1Label" placeholder="(Add a button label)">
<textarea id="quickReply1Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea> <textarea id="quickReply1Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea>
</div> </div>
<div class="flex-container alignitemsflexstart"> <div class="flex-container alignitemsflexstart">
<input class="text_pole widthUnset" id="quickReply2Label" placeholder="(Add a button label)"> <input class="text_pole wide30p" id="quickReply2Label" placeholder="(Add a button label)">
<textarea id="quickReply2Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea> <textarea id="quickReply2Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea>
</div> </div>
<div class="flex-container alignitemsflexstart"> <div class="flex-container alignitemsflexstart">
<input class="text_pole widthUnset" id="quickReply3Label" placeholder="(Add a button label)"> <input class="text_pole wide30p" id="quickReply3Label" placeholder="(Add a button label)">
<textarea id="quickReply3Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea> <textarea id="quickReply3Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea>
</div> </div>
<div class="flex-container alignitemsflexstart"> <div class="flex-container alignitemsflexstart">
<input class="text_pole widthUnset" id="quickReply4Label" placeholder="(Add a button label)"> <input class="text_pole wide30p" id="quickReply4Label" placeholder="(Add a button label)">
<textarea id="quickReply4Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea> <textarea id="quickReply4Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea>
</div> </div>
<div class="flex-container alignitemsflexstart"> <div class="flex-container alignitemsflexstart">
<input class="text_pole widthUnset" id="quickReply5Label" placeholder="(Add a button label)"> <input class="text_pole wide30p" id="quickReply5Label" placeholder="(Add a button label)">
<textarea id="quickReply5Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea> <textarea id="quickReply5Mes" placeholder="(custom message here)" class="text_pole textarea_compact widthUnset flex1" rows="2"></textarea>
</div> </div>
</div> </div>

View File

@ -3812,6 +3812,10 @@ toolcool-color-picker {
width: 50% !important; width: 50% !important;
} }
.wide30p {
width: 30% !important;
}
.justifyLeft { .justifyLeft {
text-align: start; text-align: start;