我试图简单地更改文本/密码输入的颜色。不幸的是,能够改变的一切都隐藏在后面,#shadow-root
所以我的 CSS 无法触及它。
我试着简单地写:
input {
color:var(--ion-color-primary) !important;
}
但它当然看不到阴影领域内的任何东西。HTML 的布局如下:
<ion-input _ngcontent-c0="" class="form__group__item--input ng-untouched ng-pristine ng-invalid hydrated ion-untouched ion-pristine ion-invalid has-focus" formcontrolname="email" type="text" ng-reflect-name="email" ng-reflect-type="text">
#shadow-root
<style></style
<input> // Need to edit this one
<slot></slot?
<input type="hidden" class="aux-input" name="ion-input-0" value="">
</ion-input>
控制输入颜色的 css 没有使用我可以在其他任何地方更改的变量
input, textarea, select, button {
text-rendering: auto;
color: initial;
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display: inline-block;
text-align: start;
margin: 0em;
font: 400 11px system-ui;
}
但我无法覆盖这些。我觉得我需要在根目录下做点什么,但我还不知道 CSS 变量。
Ionic 4 中是否有任何方法可以更改输入文本颜色?