Decrease brightness of disabled inputs
This commit is contained in:
parent
1c01aafd51
commit
39768b78ce
|
@ -456,6 +456,7 @@
|
|||
input:disabled,
|
||||
textarea:disabled {
|
||||
cursor: not-allowed;
|
||||
filter: brightness(0.5);
|
||||
}
|
||||
|
||||
.debug-red {
|
||||
|
|
|
@ -33,7 +33,7 @@ async function doTokenCounter() {
|
|||
<div id="tokenized_chunks_display" class="wide100p">—</div>
|
||||
<hr>
|
||||
<div>Token IDs:</div>
|
||||
<textarea id="token_counter_ids" class="wide100p textarea_compact" disabled rows="1">—</textarea>
|
||||
<textarea id="token_counter_ids" class="wide100p textarea_compact" readonly rows="1">—</textarea>
|
||||
</div>
|
||||
</div>`;
|
||||
|
||||
|
|
Loading…
Reference in New Issue