Browse Source

DIV-1111: Adjusting styles for readonly input fields.

pull/172/head
Min Ji Choi 5 years ago
parent
commit
996ab1778c
2 changed files with 13 additions and 1 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +12
    -0
      edivorce/apps/core/static/css/main.scss

+ 1
- 1
edivorce/apps/core/static/css/main.css
File diff suppressed because it is too large
View File


+ 12
- 0
edivorce/apps/core/static/css/main.scss View File

@ -598,6 +598,18 @@ select.form-control {
height: 42px; height: 42px;
} }
input.form-control, input {
&[readonly] {
box-shadow: none;
cursor: default;
border-color: #ccc;
&:focus {
border-color: #ccc;
}
}
}
.form-group input.form-control, .form-group input.form-control,
.input-group input.form-control:first-child { .input-group input.form-control:first-child {
margin-top: 12px; margin-top: 12px;


Loading…
Cancel
Save