Commit 37e22a66 authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes #3239 Removing style from form inputs

This way the OS style is used, which is better
Showing with 3 additions and 35 deletions
+3 -35
input { input, input:focus, select, textarea, textarea:focus {
font-size:12px; font-size:12px;
} }
input[type=text] { input[type=text], input[type=password], select {
border:1px solid #AAA;
padding:2px; padding:2px;
} }
input[type=text]:focus,input[type=password]:focus {
border:1px solid #333;
}
input[type=password] {
border:1px solid #AAA;
padding:2px;
}
input:focus {
font-size:12px;
}
select {
font-size:12px;
}
textarea {
border:1px solid #AAA;
font-size:12px;
}
textarea:focus {
font-size:12px;
}
input[disabled] { input[disabled] {
color:#888; color:#888;
background-color:#DDD; background-color:#DDD;
} }
textarea[disabled] { textarea[disabled], select[disabled] {
color:#000;
background-color:#DDD;
}
select[disabled] {
color:#000; color:#000;
background-color:#DDD; background-color:#DDD;
} }
......
  • bmortier @bmortier

    mentioned in issue #1083 (closed)

    By Côme Chilliet on 2017-09-02T15:12:04 (imported from GitLab)

    ·

    mentioned in issue #1083 (closed)

    By Côme Chilliet on 2017-09-02T15:12:04 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment