Add default formatting for <ol> tags and make <input type="password"> match <input type="text">, props beaulebens, fixes #8876
git-svn-id: http://svn.automattic.com/wordpress/trunk@10373 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b396079aa0
commit
92222d13d1
|
@ -184,6 +184,7 @@ table {
|
|||
|
||||
/* include margin and padding in the width calculation of input and textarea */
|
||||
input[type="text"],
|
||||
input[type="password"],
|
||||
textarea {
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
|
|
|
@ -2945,3 +2945,8 @@ table.fixed {
|
|||
line-height: 1;
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style-type: decimal;
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue