Skip to content
This repository has been archived by the owner on Apr 16, 2019. It is now read-only.

Commit

Permalink
Merge pull request #630 from Philzen/patch-1
Browse files Browse the repository at this point in the history
CSS: Fix missing semicolon in wildcard rule
  • Loading branch information
Ian Maffett committed Mar 28, 2014
2 parents 9cc5aa2 + d7a5085 commit 54a61fb
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions css/flex.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,31 @@
**********************************************************/

* {
-webkit-user-select:none; /* Prevent copy paste for all elements except text fields */
-webkit-tap-highlight-color:rgba(0, 0, 0, 0); /* set highlight color for user interaction */
-moz-tap-highlight-color:rgba(0, 0, 0, 0); /* set highlight color for user interaction */
-ms-touch-action:none;
-moz-user-select:-moz-none
-webkit-user-select: none; /* Prevent copy paste for all elements except text fields */
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* set highlight color for user interaction */
-moz-tap-highlight-color: rgba(0, 0, 0, 0); /* set highlight color for user interaction */
-ms-touch-action: none;
-moz-user-select: -moz-none;
-webkit-touch-callout: none; /* prevent the popup menu on any links*/
margin:0;
padding:0;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

body {
overflow-x:hidden;
-webkit-text-size-adjust:none;
font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
color:#000;
font-size:14px;
display:-webkit-box;
overflow-x: hidden;
-webkit-text-size-adjust: none;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #000;
font-size: 14px;
display: -webkit-box;
background: #CBD2D8;
/* We want to layout our first container vertically */
-webkit-box-orient: vertical;
/* we want our child elements to stretch to fit the container */
-webkit-box-align:stretch;
-webkit-box-align: stretch;
} /* General styles that apply to elements not contained within other classes and styles */


Expand Down Expand Up @@ -615,4 +615,4 @@ body {
overflow-y:visible !important;
overflow:visible !important;
}
}
}

0 comments on commit 54a61fb

Please sign in to comment.