3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-04 16:25:39 +00:00

Use readonly style with light/dark on LDAP settings

This commit is contained in:
snipe
2026-01-14 20:56:35 +00:00
parent 90b1ee4805
commit b3c59b2cc3

View File

@ -14,6 +14,7 @@
{{-- Page content --}}
@section('content')
<style>
.checkbox label {
padding-right: 40px;
@ -25,13 +26,26 @@
}
/*
Don't make the password field *look* readonly - this is for usability, so admins don't think they can't edit this field.
*/
.form-control[readonly] {
background-color: white;
color: #555555;
cursor:text;
Don't make the password field *look* readonly - this is for usability, so admins don't think they can't edit this field.
*/
input[type='text'][disabled],
input[disabled],
textarea[disabled],
input[readonly],
textarea[readonly],
.form-control[disabled],
.form-control[readonly],
fieldset[disabled]
{
cursor:text !important;
background-color: var(--table-stripe-bg) !important;
color: var(--color-fg) !important;
}
input:required, select:required {
border-right: 5px solid orange !important;
}
.table-wrapper {
overflow-x: auto;