Add default formatting for <ol> tags and make <input type="password"> match <input type="text">, props beaulebens, fixes #8876

git-svn-id: https://develop.svn.wordpress.org/trunk@10373 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-01-17 21:17:00 +00:00
parent 8e68af3087
commit ffd66244c7
2 changed files with 6 additions and 0 deletions

View File

@ -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;

View File

@ -2945,3 +2945,8 @@ table.fixed {
line-height: 1;
padding-left: 25px;
}
ol {
list-style-type: decimal;
margin-left: 2em;
}