Ticket #21478: 21478.2.diff

File 21478.2.diff, 842 bytes (added by jkudish, 10 months ago)

Apply the css rules for text inputs and textareas to all input[type="text"], input[type="password"] and textarea so as to maintain a consistent look across all inputs in the theme. Simplified/removed some duplicated css in the process

Line 
1Index: wp-content/themes/twentytwelve/style.css
2===================================================================
3--- wp-content/themes/twentytwelve/style.css    (revision 21435)
4+++ wp-content/themes/twentytwelve/style.css    (working copy)
5@@ -260,8 +260,9 @@
6 }
7 
8 /* Form fields */
9-.widget_search input[type="text"],
10-article.post-password-required form input[type="password"] {
11+input[type="text"],
12+input[type="password"],
13+textarea {
14        padding: 6px;
15        padding: 0.428571429rem;
16        font-family: inherit;
17@@ -1208,14 +1209,11 @@
18 }
19 #respond form input[type="text"],
20 #respond form textarea {
21-       font-family: inherit;
22        font-size: 12px;
23        font-size: 0.857142857rem;
24        line-height: 1.714285714;
25        padding: 10px;
26        padding: 0.714285714rem;
27-       border: 1px solid #d5d2ca;
28-       border-radius: 3px;
29        width: 96%;
30 }
31 #respond form p.form-allowed-tags {