Commit: d2420e89bf486b3e66271e4a142d8f4f1e89985c Author: Levi Morrison <[email protected]> Fri, 27 Dec 2013 17:10:20 -0700 Parents: 0007664b33980995cd980e134e42f02e95634ef2 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=d2420e89bf486b3e66271e4a142d8f4f1e89985c Log: Removed unneeded vendor prefixes. Note that we still need -moz-box-sizing; even v28 (two releases out from now) is not scheduled to support unprefixed box-sizing. Changed paths: M styles/theme-base.css M styles/theme-medium.css Diff: diff --git a/styles/theme-base.css b/styles/theme-base.css index 584b91b..48e1bf5 100755 --- a/styles/theme-base.css +++ b/styles/theme-base.css @@ -194,7 +194,6 @@ textarea { margin-bottom: 0; padding: .25em .5em; line-height: 1; - -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing:border-box; width:100%; @@ -230,8 +229,6 @@ textarea { color: #555555; text-decoration: none; background-color: #e5e5e5; - -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); - -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); } .navbar .navbar-inner { @@ -266,8 +263,6 @@ textarea { text-shadow: 0 1px 0 #fff; border:0; border-radius:2px; - -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.2); - -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2); box-shadow: inset 0 1px 2px rgba(0,0,0,.2); } .navbar .navbar-search .search-query:focus { @@ -381,7 +376,6 @@ input { input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; box-sizing: content-box; } @@ -553,7 +547,6 @@ hr { border-top: .125em solid; padding: .625em .75em .75em; margin-top:.25em; - -moz-border-radius:0 0 2px 2px; border-radius:0 0 2px 2px; border-bottom:1px solid; } @@ -822,8 +815,6 @@ table.standard th.subr { #layout .cse table.gsc-search-box, #layout table.gsc-search-box { border: solid 1px #99c; - -moz-border-radius: 2px; - -webkit-border-radius: 2px; border-radius: 2px; } @@ -879,7 +870,6 @@ table.standard th.subr { border-radius:2px; margin-top: 0; -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; box-sizing: border-box; } @@ -1068,15 +1058,8 @@ fieldset { background: rgba(102, 102, 153, 0.98); color:#fff; width: 100%; - -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1); - -moz-box-shadow: 0 1px 10px rgba(0,0,0,.1); box-shadow: 0 1px 10px rgba(0,0,0,.1); - -webkit-border-bottom-right-radius: 2px; - -webkit-border-bottom-left-radius: 2px; - -moz-border-radius-bottomright: 2px; - -moz-border-radius-bottomleft: 2px; - border-bottom-right-radius: 2px; - border-bottom-left-radius: 2px; + border-radius: 0 0 2px 2px; } .tt-dropdown-menu h3 { diff --git a/styles/theme-medium.css b/styles/theme-medium.css index 87fe624..59463b4 100755 --- a/styles/theme-medium.css +++ b/styles/theme-medium.css @@ -208,7 +208,6 @@ div.warning:before { #usernotes .count { background-color: #669; color: #fff; - -moz-border-radius: 4px; border-radius: 4px; } #usernotes .note .name { -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
