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

Commit 54a61fb

Browse files
author
Ian Maffett
committed
Merge pull request #630 from Philzen/patch-1
CSS: Fix missing semicolon in wildcard rule
2 parents 9cc5aa2 + d7a5085 commit 54a61fb

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

css/flex.css

+18-18
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
**********************************************************/
44

55
* {
6-
-webkit-user-select:none; /* Prevent copy paste for all elements except text fields */
7-
-webkit-tap-highlight-color:rgba(0, 0, 0, 0); /* set highlight color for user interaction */
8-
-moz-tap-highlight-color:rgba(0, 0, 0, 0); /* set highlight color for user interaction */
9-
-ms-touch-action:none;
10-
-moz-user-select:-moz-none
6+
-webkit-user-select: none; /* Prevent copy paste for all elements except text fields */
7+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* set highlight color for user interaction */
8+
-moz-tap-highlight-color: rgba(0, 0, 0, 0); /* set highlight color for user interaction */
9+
-ms-touch-action: none;
10+
-moz-user-select: -moz-none;
1111
-webkit-touch-callout: none; /* prevent the popup menu on any links*/
12-
margin:0;
13-
padding:0;
14-
-webkit-box-sizing:border-box;
15-
-moz-box-sizing:border-box;
16-
box-sizing:border-box;
12+
margin: 0;
13+
padding: 0;
14+
-webkit-box-sizing: border-box;
15+
-moz-box-sizing: border-box;
16+
box-sizing: border-box;
1717
}
1818

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

3333

@@ -615,4 +615,4 @@ body {
615615
overflow-y:visible !important;
616616
overflow:visible !important;
617617
}
618-
}
618+
}

0 commit comments

Comments
 (0)