client: mark the check boxes and radio buttons that should use the new style

This commit is contained in:
Adorian Doran
2025-01-24 22:35:45 +02:00
parent ed201ff9a4
commit 41ef47576d
18 changed files with 93 additions and 76 deletions

View File

@@ -23,11 +23,11 @@ const TPL = `
padding: 2px 10px 2px 10px;
align-items: center;
}
.find-widget-box > *, .replace-widget-box > *{
margin-right: 15px;
}
.find-widget-box, .replace-widget-box {
display: flex;
}
@@ -35,11 +35,11 @@ const TPL = `
.find-widget-found-wrapper {
font-weight: bold;
}
.find-widget-search-term-input-group, .replace-widget-replacetext-input {
max-width: 300px;
}
.find-widget-spacer {
flex-grow: 1;
}
@@ -51,29 +51,29 @@ const TPL = `
<button class="btn btn-outline-secondary bx bxs-chevron-up find-widget-previous-button" type="button"></button>
<button class="btn btn-outline-secondary bx bxs-chevron-down find-widget-next-button" type="button"></button>
</div>
<div class="form-check">
<label tabIndex="-1" class="form-check-label">
<input type="checkbox" class="form-check-input find-widget-case-sensitive-checkbox">
<label tabIndex="-1" class="form-check-label tn-checkbox">
<input type="checkbox" class="form-check-input find-widget-case-sensitive-checkbox">
${t("find.case_sensitive")}
</label>
</div>
<div class="form-check">
<label tabIndex="-1" class="form-check-label">
<label tabIndex="-1" class="form-check-label tn-checkbox">
<input type="checkbox" class="form-check-input find-widget-match-words-checkbox">
${t("find.match_words")}
</label>
</div>
<div class="find-widget-found-wrapper">
<span class="find-widget-current-found">0</span>
/
<span class="find-widget-total-found">0</span>
</div>
<div class="find-widget-spacer"></div>
<div class="find-widget-close-button"><button class="btn icon-action bx bx-x"></button></div>
</div>