Skip to content

Commit

Permalink
Prefix-less property should go last
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Makeev committed Jun 18, 2012
1 parent b6fbaae commit dcf7cd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion css/kickstart-forms.css
Expand Up @@ -138,10 +138,10 @@ box-sizing: border-box;
a.button,
a,
input[type="file"]{
transition: box-shadow 0.5s, border 0.5s, background 0.5s;
-moz-transition: -moz-box-shadow 0.5s, border 0.5s, background 0.5s;
-webkit-transition: -webkit-box-shadow 0.5s, border 0.5s, background 0.5s;
-o-transition: box-shadow 0.5s, border 0.5s, background 0.5s;
transition: box-shadow 0.5s, border 0.5s, background 0.5s;
}

input.checkbox,
Expand Down
4 changes: 2 additions & 2 deletions css/tiptip.css
Expand Up @@ -18,12 +18,12 @@ border: 1px solid rgba(255,255,255,0.25);
background:#212121;
background-color: rgba(25,25,25,0.92);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
box-shadow: 0 0 3px #555;
border-radius: 3px;
-webkit-box-shadow: 0 0 3px #555;
-moz-box-shadow: 0 0 3px #555;
box-shadow: 0 0 3px #555;
*background:#212121;
}

Expand Down

0 comments on commit dcf7cd7

Please sign in to comment.