Skip to content

Commit a0df7ad

Browse files
committed
Override readonly styles on user edit page
1 parent 82a4398 commit a0df7ad

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

resources/views/users/edit.blade.php

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,22 @@
2020
padding-top: 0px;
2121
}
2222
23-
input[type='text'][disabled], input[disabled], textarea[disabled], input[readonly], textarea[readonly], .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
24-
background-color: white;
25-
color: #555555;
26-
cursor:text;
23+
input[type='text'][disabled],
24+
input[disabled],
25+
textarea[disabled],
26+
input[readonly],
27+
textarea[readonly],
28+
.form-control[disabled],
29+
.form-control[readonly],
30+
fieldset[disabled]
31+
{
32+
cursor:text !important;
33+
background-color: var(--table-stripe-bg) !important;
34+
color: var(--color-fg) !important;
35+
}
36+
input:required, select:required {
37+
border-right: 5px solid orange !important;
2738
}
28-
2939
3040
</style>
3141

0 commit comments

Comments
 (0)