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

CSS: Fix missing semicolon in wildcard rule #630

Merged
merged 2 commits into from
Mar 28, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}
}