Skip to content

Commit

Permalink
Fixes issue pure-css#23
Browse files Browse the repository at this point in the history
Removes browser prefixes for CSS properties that don't need prefixes
in supported environments.
  • Loading branch information
tilomitra committed Jun 6, 2013
1 parent 17e7cec commit 45518ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 0 additions & 4 deletions src/buttons/css/buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion src/forms/css/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
/* Rounded Inputs */
.pure-form .pure-input-rounded {
border-radius: 20px;
padding-left:1em;
padding-left: 1em;
}

/* Grouped Inputs */
Expand Down
6 changes: 4 additions & 2 deletions src/menus/css/menus-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
}

.pure-menu-can-have-children > .pure-menu-label {
padding-right:30px;
padding-right: 30px;
}

.pure-menu-separator {
Expand All @@ -78,7 +78,9 @@
overflow: hidden;
}

.pure-menu-hidden { display: none; }
.pure-menu-hidden {
display: none;
}

/* FIXED MENU */
.pure-menu-fixed {
Expand Down
4 changes: 2 additions & 2 deletions src/menus/css/menus.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
.pure-menu .pure-menu-heading {
color: #565d64;
text-transform: uppercase;
font-size:90%;
margin-top:0.5em;
font-size: 90%;
margin-top: 0.5em;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #dfdfdf;
Expand Down

0 comments on commit 45518ca

Please sign in to comment.