Update basic user onboarding modal to be readonly rather than disabled and lighten disabled state text
This commit is contained in:
parent
b0b69222d1
commit
9905d000f4
|
@ -112,4 +112,8 @@
|
||||||
.spectrum-Textfield {
|
.spectrum-Textfield {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
input:disabled {
|
||||||
|
color: var(--spectrum-global-color-gray-600) !important;
|
||||||
|
-webkit-text-fill-color: var(--spectrum-global-color-gray-600) !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
bind:value={$email}
|
bind:value={$email}
|
||||||
error={$touched && $error}
|
error={$touched && $error}
|
||||||
/>
|
/>
|
||||||
<Input disabled label="Password" value={password} />
|
<Input readonly label="Password" value={password} />
|
||||||
<div>
|
<div>
|
||||||
<div class="toggle">
|
<div class="toggle">
|
||||||
<Label size="L">Development access</Label>
|
<Label size="L">Development access</Label>
|
||||||
|
|
Loading…
Reference in New Issue