pure-css-rails 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Pure CSS for Rails Asset Pipeline
2
2
 
3
- Based on [pure.css](http://purecss.io/) version 0.4.1.
3
+ Based on [pure.css](http://purecss.io/) version 0.4.2.
4
4
 
5
5
  ## Install
6
6
 
@@ -26,12 +26,6 @@ You don't need to add `normalize.css`, it is already included.
26
26
  Since 0.2.1, the gem and the pure.css versions match, so it is easier to pin
27
27
  the library to a specific version via the Gemfile.
28
28
 
29
- * 0.4.1 - Pure 0.4.1
30
- * 0.3.0 - Pure 0.3.0
31
- * 0.2.1 - Pure 0.2.1
32
- * 0.0.2 - Pure 0.2.0
33
- * 0.0.1 - Pure 0.1.0
34
-
35
29
  ## Contribute
36
30
 
37
31
  In the case you find out that something is missing or does not work in a way
@@ -1,5 +1,5 @@
1
1
  module PureCSS
2
2
  module Rails
3
- VERSION = "0.4.1"
3
+ VERSION = "0.4.2"
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.4.1
2
+ Pure v0.4.2
3
3
  Copyright 2014 Yahoo! Inc. All rights reserved.
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yui/pure/blob/master/LICENSE.md
@@ -945,7 +945,6 @@ a.pure-button-selected {
945
945
  padding: 0.5em 0.6em;
946
946
  display: inline-block;
947
947
  border: 1px solid #ccc;
948
- font-size: 0.8em;
949
948
  box-shadow: inset 0 1px 3px #ddd;
950
949
  border-radius: 4px;
951
950
  -webkit-box-sizing: border-box;
@@ -961,7 +960,6 @@ since IE8 won't execute CSS that contains a CSS3 selector.
961
960
  padding: 0.5em 0.6em;
962
961
  display: inline-block;
963
962
  border: 1px solid #ccc;
964
- font-size: 0.8em;
965
963
  box-shadow: inset 0 1px 3px #ddd;
966
964
  border-radius: 4px;
967
965
  -webkit-box-sizing: border-box;
@@ -970,6 +968,13 @@ since IE8 won't execute CSS that contains a CSS3 selector.
970
968
  }
971
969
 
972
970
 
971
+ /* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
972
+ /* May be able to remove this tweak as color inputs become more standardized across browsers. */
973
+ .pure-form input[type="color"] {
974
+ padding: 0.2em 0.5em;
975
+ }
976
+
977
+
973
978
  .pure-form input[type="text"]:focus,
974
979
  .pure-form input[type="password"]:focus,
975
980
  .pure-form input[type="email"]:focus,
@@ -1055,7 +1060,7 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1055
1060
  .pure-form textarea:focus:invalid,
1056
1061
  .pure-form select:focus:invalid {
1057
1062
  color: #b94a48;
1058
- border: 1px solid #ee5f5b;
1063
+ border-color: #ee5f5b;
1059
1064
  }
1060
1065
  .pure-form input:focus:invalid:focus,
1061
1066
  .pure-form textarea:focus:invalid:focus,
@@ -1076,7 +1081,6 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1076
1081
  }
1077
1082
  .pure-form label {
1078
1083
  margin: 0.5em 0 0.2em;
1079
- font-size: 90%;
1080
1084
  }
1081
1085
  .pure-form fieldset {
1082
1086
  margin: 0;
@@ -1088,7 +1092,6 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1088
1092
  width: 100%;
1089
1093
  padding: 0.3em 0;
1090
1094
  margin-bottom: 0.3em;
1091
- font-size: 125%;
1092
1095
  color: #333;
1093
1096
  border-bottom: 1px solid #e5e5e5;
1094
1097
  }
@@ -1210,14 +1213,14 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1210
1213
  padding-left: 0.3em;
1211
1214
  color: #666;
1212
1215
  vertical-align: middle;
1213
- font-size: 90%;
1216
+ font-size: 0.875em;
1214
1217
  }
1215
1218
 
1216
1219
  /* Block help for forms */
1217
1220
  .pure-form-message {
1218
1221
  display: block;
1219
1222
  color: #666;
1220
- font-size: 90%;
1223
+ font-size: 0.875em;
1221
1224
  }
1222
1225
 
1223
1226
  /*csslint adjoining-classes:false, outline-none:false*/
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.4.1
2
+ Pure v0.4.2
3
3
  Copyright 2014 Yahoo! Inc. All rights reserved.
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yui/pure/blob/master/LICENSE.md
@@ -1048,7 +1048,6 @@ a.pure-button-selected {
1048
1048
  padding: 0.5em 0.6em;
1049
1049
  display: inline-block;
1050
1050
  border: 1px solid #ccc;
1051
- font-size: 0.8em;
1052
1051
  box-shadow: inset 0 1px 3px #ddd;
1053
1052
  border-radius: 4px;
1054
1053
  -webkit-box-sizing: border-box;
@@ -1064,7 +1063,6 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1064
1063
  padding: 0.5em 0.6em;
1065
1064
  display: inline-block;
1066
1065
  border: 1px solid #ccc;
1067
- font-size: 0.8em;
1068
1066
  box-shadow: inset 0 1px 3px #ddd;
1069
1067
  border-radius: 4px;
1070
1068
  -webkit-box-sizing: border-box;
@@ -1073,6 +1071,13 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1073
1071
  }
1074
1072
 
1075
1073
 
1074
+ /* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
1075
+ /* May be able to remove this tweak as color inputs become more standardized across browsers. */
1076
+ .pure-form input[type="color"] {
1077
+ padding: 0.2em 0.5em;
1078
+ }
1079
+
1080
+
1076
1081
  .pure-form input[type="text"]:focus,
1077
1082
  .pure-form input[type="password"]:focus,
1078
1083
  .pure-form input[type="email"]:focus,
@@ -1158,7 +1163,7 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1158
1163
  .pure-form textarea:focus:invalid,
1159
1164
  .pure-form select:focus:invalid {
1160
1165
  color: #b94a48;
1161
- border: 1px solid #ee5f5b;
1166
+ border-color: #ee5f5b;
1162
1167
  }
1163
1168
  .pure-form input:focus:invalid:focus,
1164
1169
  .pure-form textarea:focus:invalid:focus,
@@ -1179,7 +1184,6 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1179
1184
  }
1180
1185
  .pure-form label {
1181
1186
  margin: 0.5em 0 0.2em;
1182
- font-size: 90%;
1183
1187
  }
1184
1188
  .pure-form fieldset {
1185
1189
  margin: 0;
@@ -1191,7 +1195,6 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1191
1195
  width: 100%;
1192
1196
  padding: 0.3em 0;
1193
1197
  margin-bottom: 0.3em;
1194
- font-size: 125%;
1195
1198
  color: #333;
1196
1199
  border-bottom: 1px solid #e5e5e5;
1197
1200
  }
@@ -1313,14 +1316,14 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1313
1316
  padding-left: 0.3em;
1314
1317
  color: #666;
1315
1318
  vertical-align: middle;
1316
- font-size: 90%;
1319
+ font-size: 0.875em;
1317
1320
  }
1318
1321
 
1319
1322
  /* Block help for forms */
1320
1323
  .pure-form-message {
1321
1324
  display: block;
1322
1325
  color: #666;
1323
- font-size: 90%;
1326
+ font-size: 0.875em;
1324
1327
  }
1325
1328
 
1326
1329
  @media only screen and (max-width : 480px) {
@@ -1382,7 +1385,7 @@ since IE8 won't execute CSS that contains a CSS3 selector.
1382
1385
  .pure-form-message-inline,
1383
1386
  .pure-form-message {
1384
1387
  display: block;
1385
- font-size: 80%;
1388
+ font-size: 0.75em;
1386
1389
  /* Increased bottom padding to make it group with its related input element. */
1387
1390
  padding: 0.2em 0 0.8em;
1388
1391
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pure-css-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -36,7 +36,7 @@ cert_chain:
36
36
  NzNOWjdML0ZpbVJGTGZQMUVCMGJsQXJ5RDFNTjUxS3cKc0U3WjZCRWhQVHlB
37
37
  cDNKeEtiK1VlSTg3VVhmRm9najdFMXJHU1dERXE0Wkg2ZzM4azFBb1ZjYXNa
38
38
  Q0ZObW93ZwpaMkxZbFE1SgotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
39
- date: 2014-02-10 00:00:00.000000000 Z
39
+ date: 2014-02-16 00:00:00.000000000 Z
40
40
  dependencies: []
41
41
  description: Pure CSS for Rails Asset Pipeline
42
42
  email:
metadata.gz.sig CHANGED
Binary file