writing mode: bidi exceptions
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
This commit is contained in:
parent
d3652a649b
commit
5ab3b678da
3 changed files with 25 additions and 0 deletions
23
src/App.scss
23
src/App.scss
|
@ -844,3 +844,26 @@ option {
|
||||||
.fade-leave-active {
|
.fade-leave-active {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Those containers are not affected by
|
||||||
|
// external directionality.
|
||||||
|
.site-name,
|
||||||
|
.status-username,
|
||||||
|
.account-name,
|
||||||
|
.shortName,
|
||||||
|
.userNameFull,
|
||||||
|
.userName,
|
||||||
|
.serverName,
|
||||||
|
.StatusBody > .body,
|
||||||
|
.user-card-bio,
|
||||||
|
.search-result .hashtag a,
|
||||||
|
.panel-body::before,
|
||||||
|
.form-control#username:not(:placeholder-shown), .form-control#password,
|
||||||
|
.emoji-search > .form-control,
|
||||||
|
.form-post-subject, .form-post-subject + .emoji-picker-icon, .main-input,
|
||||||
|
.name-changer#username, textarea.bio, .profile-fields input:not(:placeholder-shown),
|
||||||
|
.name-changer#username + .emoji-picker-icon, textarea.bio + .emoji-picker-icon,
|
||||||
|
input[type=email], input[type=password], input[type=number] {
|
||||||
|
unicode-bidi: isolate;
|
||||||
|
direction: initial;
|
||||||
|
}
|
|
@ -21,6 +21,7 @@
|
||||||
:id="name + '-t'"
|
:id="name + '-t'"
|
||||||
class="textColor unstyled"
|
class="textColor unstyled"
|
||||||
type="text"
|
type="text"
|
||||||
|
dir="ltr"
|
||||||
:value="modelValue || fallback"
|
:value="modelValue || fallback"
|
||||||
:disabled="!present || disabled"
|
:disabled="!present || disabled"
|
||||||
@input="$emit('update:modelValue', $event.target.value)"
|
@input="$emit('update:modelValue', $event.target.value)"
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
v-model="family"
|
v-model="family"
|
||||||
class="custom-font"
|
class="custom-font"
|
||||||
type="text"
|
type="text"
|
||||||
|
dir="ltr"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue