Merge pull request #69 from tilomitra/no-prefix

Fix for issue #23: Remove -webkit and -moz prefixes for older CSS3 properties.
This commit is contained in:
Eric Ferraiuolo 2013-06-06 18:59:03 -07:00
commit c25c08097b
5 changed files with 11 additions and 9 deletions

View File

@ -19,6 +19,10 @@ NEXT
* Added support to `pure-site` for serving `pure` locally during
development. (Issue #46, yui/pure-site#111)
* Removed vendor prefixes for `box-shadow`, `text-shadow`, `border-radius`. According
to caniuse.com, all modern browsers support the unprefixed versions of these properties.
(Issue #23)
### Forms
* (!) `.pure-help-inline` has been replaced with `.pure-form-message-inline`. We

View File

@ -12,8 +12,6 @@
border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/
background-color: #E6E6E6;
text-decoration: none;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-font-smoothing: antialiased;
/* Transitions */
@ -40,8 +38,6 @@
.pure-button-active,
.pure-button:active {
-webkit-box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
-moz-box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
}

View File

@ -78,7 +78,9 @@
overflow: hidden;
}
.pure-menu-hidden { display: none; }
.pure-menu-hidden {
display: none;
}
/* FIXED MENU */
.pure-menu-fixed {