mirror of
https://github.com/pure-css/pure.git
synced 2025-01-13 02:04:23 +00:00
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:
commit
c25c08097b
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,9 @@
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.pure-menu-hidden { display: none; }
|
||||
.pure-menu-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* FIXED MENU */
|
||||
.pure-menu-fixed {
|
||||
|
Loading…
Reference in New Issue
Block a user