homesteading_assets 0.0.11 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9b044ef1050f517b6ff2bf5f0bb037e0025059ad
4
- data.tar.gz: ecdacd2c2eeb3ad7ac522a44f2959ac9faea7299
3
+ metadata.gz: 54da806db9bf002529a19421673a1064b74fb4fd
4
+ data.tar.gz: 449d9b6aae091f61cdb1d6b3f3ace5fe25109547
5
5
  SHA512:
6
- metadata.gz: 54b2242833700b99b4c1512dd0bdcd20554eca7cd77639b244b12d66d64052ae443dc8ea6b4554124f5f36f56f06f12ed25c9a0fc023e1eb8df1e45448e6fa76
7
- data.tar.gz: 1ac8317fc8d720d9ea6944b2438d8488facbd975e499d3266b470192611e9647400d48f0f50854ff5c40c05d2d834a675a4faa68982eaf4617833361855fa778
6
+ metadata.gz: f93e6e12685d94642f088f0ecb9fbe09df43d1774868b3b5d1aec15320662387b0bad3db17f5d43c5b6f8d5aaa7441c84d68f8f8f7a3c4815af2e27ed191c504
7
+ data.tar.gz: 5bd2f770e5c2c3e700e39719563cdd0f734029a0f3af8941072a58e4512a530a59dc0017805e23be47720dc96675ba7b895e034bbc6bfeec9d9cfe37841d8acd
@@ -5,7 +5,6 @@
5
5
  //= require write-post
6
6
 
7
7
  // for p-location geo fields
8
- // TODO: extract into plugin and out of global namespace
9
8
  (function($) {
10
9
  function withLocation(callback) {
11
10
  if (Modernizr.geolocation) {
@@ -13,8 +12,7 @@
13
12
  }
14
13
  }
15
14
 
16
- // TODO: extract into plugin and out of global namespace
17
- function populateGeoFields(position) {
15
+ function populateGeoFields(position) {
18
16
  var latitude, longitude, altitude, $pLocation;
19
17
 
20
18
  latitude = position.coords.latitude;
@@ -33,8 +31,7 @@
33
31
  };
34
32
 
35
33
  // for dt-published datetime field
36
- // TODO: extract into plugin and out of global namespace
37
- function ISODateString(d){
34
+ function ISODateString(d){
38
35
  return d.getUTCFullYear()+"-"
39
36
  + pad(d.getUTCMonth()+1)+"-"
40
37
  + pad(d.getUTCDate())+"T"
@@ -49,7 +46,6 @@
49
46
 
50
47
  // ask user to access their location
51
48
  // populate lat/lon/alt fields
52
- // TODO: extract into plugin and out of global namespace
53
49
  withLocation(populateGeoFields);
54
50
  });
55
51
  })(window.jQuery);
@@ -10,6 +10,18 @@
10
10
  display: block;
11
11
  }
12
12
 
13
+ .p-name .p-hs-title {
14
+ font-size: 2em;
15
+ font-weight: bold;
16
+ display: block;
17
+ }
18
+
19
+ .p-name .p-hs-subtitle {
20
+ font-size: 1.5em;
21
+ display: block;
22
+ font-weight: normal;
23
+ }
24
+
13
25
  header .post-meta {
14
26
  margin-bottom: 1em;
15
27
  }
@@ -1,3 +1,3 @@
1
1
  module HomesteadingAssets
2
- VERSION = "0.0.11"
2
+ VERSION = "0.0.13"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: homesteading_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Becker
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-10-07 00:00:00.000000000 Z
12
+ date: 2014-10-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -59,7 +59,6 @@ files:
59
59
  - app/assets/stylesheets/homesteading_assets/application.css.scss
60
60
  - app/assets/stylesheets/homesteading_assets/base.css.scss
61
61
  - app/assets/stylesheets/homesteading_assets/nav.css.scss
62
- - app/assets/stylesheets/homesteading_assets/note.css.scss
63
62
  - app/assets/stylesheets/homesteading_assets/pagination.css.scss
64
63
  - app/assets/stylesheets/homesteading_assets/read-write.css.scss
65
64
  - app/assets/stylesheets/homesteading_assets/read.css.scss
@@ -1,34 +0,0 @@
1
- .h-entry {
2
- .post-meta {
3
- font-size: 16px;
4
- line-height: 1.25em;
5
- margin: 1em 0 0 0;
6
- opacity: .5;
7
- color: #999;
8
-
9
- .syndication {
10
- font-weight: normal;
11
- display: inline;
12
-
13
- p,
14
- ul,
15
- li {
16
- display: inline;
17
- margin: 0;
18
- padding: 0;
19
- }
20
-
21
- li {
22
- margin-left: .25em;
23
- }
24
- }
25
- }
26
- }
27
-
28
- /* "tablet" */
29
- @media (min-width: 768px) {
30
- .h-entry footer .syndication {
31
- display: block;
32
- margin: 0;
33
- }
34
- }