social_stream-linkser 2.0.0.beta1 → 2.0.0.beta2

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: 6e81202e3b1f8e17ad5a375ab065279fd6de2cb7
4
- data.tar.gz: ee84dc147dda1da36e2a48d48dedc116ee7f56f4
3
+ metadata.gz: 1548c0f36650905866abf240fb1d56883e856418
4
+ data.tar.gz: f089084ecc6ed58386b4879b5aa78d4b7ba54aff
5
5
  SHA512:
6
- metadata.gz: 7d1b2cac8fd26b282d19736b56ee0fc8171251507fd900623ae81b059fd14a053634e7e230f4766d230455b7206a0bce8b0cef41ff87c5f680bcc352c90445a2
7
- data.tar.gz: 3df3e6ae878a3aa5572a31d584bcea8062c9622776701c9fd0b19a02952dd32b4f645e8b4465d70b16494c35ee4b91f63dcb5eb9dba27cc64973f827e17f632e
6
+ metadata.gz: 7c492e86909a93611ade7aeb6117922c1499e1f73882f00c7322f80e9efadee8655481f30aa6dd4ac37d78bc310550f794c650f8f1593625c6650d546b345b00
7
+ data.tar.gz: 4b5e178ec29ecd30ba7e43ce755755cf5771e255347cd7844ecb3d419ff1ff96835d8cab65646ce52b1eabf9025029b7bed589e69e417e09076728b4b1249a3f
@@ -17,4 +17,9 @@
17
17
 
18
18
  @import "social_stream/linkser/repository/repository"
19
19
 
20
- @import "social_stream/linkser/repository/layout/repository"
20
+ @import "social_stream/linkser/repository/layout/repository"
21
+
22
+
23
+ @import "social_stream/linkser/responsive/responsive-768px-979px"
24
+ @import "social_stream/linkser/responsive/responsive-1200px-min"
25
+ @import "social_stream/linkser/responsive/responsive-767px-max"
@@ -5,8 +5,8 @@
5
5
  .thumbnail
6
6
  @include makeColumnoMargin(1, 0)
7
7
  display: inline
8
- .text
9
- width: 50%
8
+ .text-ev
9
+ width: 50% !important
10
10
  display: inline-block
11
11
  h6
12
12
  margin: 1px 0 3px
@@ -0,0 +1,8 @@
1
+ //
2
+ // Responsive: Large desktop and up
3
+ // --------------------------------------------------
4
+
5
+
6
+ @media (min-width: 1200px)
7
+
8
+
@@ -0,0 +1,23 @@
1
+ //
2
+ // Responsive: Landscape phone to desktop/tablet
3
+ // --------------------------------------------------
4
+
5
+
6
+ @media (max-width: 767px)
7
+
8
+ .link
9
+ .text
10
+ width: 95% !important
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+ // UP TO LANDSCAPE PHONE
19
+ // ---------------------
20
+
21
+ @media (max-width: 480px)
22
+
23
+
@@ -0,0 +1,12 @@
1
+ //
2
+ // Responsive: Tablet to desktop
3
+ // --------------------------------------------------
4
+
5
+
6
+ @media (min-width: 768px) and (max-width: 979px)
7
+
8
+ #notifications
9
+ .notifications
10
+ @include grid-core-span(12, $fluidGridColumnWidth, $fluidGridGutterWidth)
11
+ margin-left: 0
12
+
@@ -29,16 +29,54 @@
29
29
  p
30
30
  margin: 0 0 4px
31
31
 
32
- .link
33
- display: inline
34
- margin-left: 19px
35
- .thumb
36
- @include makeColumnoMargin(1, 0)
32
+ .activity
33
+ .link
37
34
  display: inline
38
- .text
39
- width: 97%
35
+ margin-left: 19px
36
+ width: 100%
37
+ .thumb
38
+ @include makeColumnoMargin(2, 0)
39
+ display: inline
40
+ margin-right: 16px
41
+ .text
42
+ width: 54%
43
+ display: inline-block
44
+ .description
45
+ p
46
+ a
47
+ display: block
48
+ .actions
49
+ width: 100%
40
50
  display: inline-block
41
- .description
42
- p
43
- a
44
- display: block
51
+ margin-bottom: 10px
52
+ .post_time_ago
53
+ display: inline-block
54
+ .to_comment,
55
+ .to_like
56
+ display: inline-block
57
+ .audience
58
+ display: inline-block
59
+
60
+ .tooltip
61
+ width: 28%
62
+ margin-top: 26px 0px 0px 53px
63
+ .audience_logo
64
+ display: inline-block
65
+ textarea
66
+ width: 100%
67
+
68
+ #link
69
+ .link
70
+ display: inline
71
+ margin-left: 19px
72
+ width: 100%
73
+ .thumb
74
+ @include makeColumnoMargin(1, 0)
75
+ display: inline
76
+ .text
77
+ width: 97%
78
+ display: inline-block
79
+ .description
80
+ p
81
+ a
82
+ display: block
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Linkser
3
- VERSION = "2.0.0.beta1".freeze
3
+ VERSION = "2.0.0.beta2".freeze
4
4
  end
5
5
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.files = `git ls-files`.split("\n")
13
13
 
14
14
  # Gem dependencies
15
- s.add_runtime_dependency('social_stream-base', '~> 2.0.0.beta1')
15
+ s.add_runtime_dependency('social_stream-base', '~> 2.0.0.beta2')
16
16
  s.add_runtime_dependency('linkser', '~> 0.0.12')
17
17
  # Development Gem dependencies
18
18
  s.add_development_dependency('sqlite3-ruby')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: social_stream-linkser
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.beta1
4
+ version: 2.0.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo Casanova Cuesta
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-16 00:00:00.000000000 Z
12
+ date: 2013-04-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: social_stream-base
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - ~>
19
19
  - !ruby/object:Gem::Version
20
- version: 2.0.0.beta1
20
+ version: 2.0.0.beta2
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - ~>
26
26
  - !ruby/object:Gem::Version
27
- version: 2.0.0.beta1
27
+ version: 2.0.0.beta2
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: linkser
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -131,6 +131,9 @@ files:
131
131
  - app/assets/stylesheets/social_stream/linkser/explore/timeline/layout/_timeline-result.css.sass
132
132
  - app/assets/stylesheets/social_stream/linkser/repository/_repository.css.sass
133
133
  - app/assets/stylesheets/social_stream/linkser/repository/layout/_repository.css.sass
134
+ - app/assets/stylesheets/social_stream/linkser/responsive/_responsive-1200px-min.css.sass
135
+ - app/assets/stylesheets/social_stream/linkser/responsive/_responsive-767px-max.css.sass
136
+ - app/assets/stylesheets/social_stream/linkser/responsive/_responsive-768px-979px.css.sass
134
137
  - app/assets/stylesheets/social_stream/linkser/timeline/_timeline-link.css.sass
135
138
  - app/assets/stylesheets/social_stream/linkser/timeline/layout/_timeline-link.css.sass
136
139
  - app/controllers/links_controller.rb