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:
azaozz 2009-01-17 21:17:00 +00:00
parent b396079aa0
commit 92222d13d1
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;
}