social_stream-events 0.0.10 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  //= require fullcalendar
2
2
  //= require gcal
3
+ //= require jquery.ad-gallery
4
+ //= require jquery.ad-gallery.pack
3
5
  //= require_tree .
4
-
5
-
@@ -9,6 +9,9 @@
9
9
  *= require_self
10
10
  *= require social_stream-base
11
11
  *= require social_stream-documents
12
+ *= require fullcalendar.print
13
+ *= require fullcalendar
14
+ *= require jquery.ad-gallery
12
15
  *= require_tree .
13
16
  */
14
17
  #filter_div
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Events
3
- VERSION = "0.0.10".freeze
3
+ VERSION = "0.0.11".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', '~> 0.9.18')
15
+ s.add_runtime_dependency('social_stream-base', '~> 0.9.19')
16
16
  s.add_runtime_dependency('conference_manager-ruby', '~> 0.0.3')
17
17
 
18
18
  # Development Gem dependencies
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,273 @@
1
+ /*
2
+ *= require_tree .
3
+ */
4
+
5
+ /*
6
+ * This is a manifest file that'll automatically include all the stylesheets available in this directory
7
+ * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
8
+ * the top of the compiled file, but it's generally better to create a new file per style scope.
9
+ *= require_self
10
+ *= require social_stream-base
11
+ *= require social_stream-documents
12
+ *= require_tree .
13
+ */
14
+ #filter_div
15
+ {
16
+ float: right;
17
+ height: 10px;
18
+ padding-top: 5px;
19
+ width: 76px;
20
+ z-index: 2000;
21
+ }
22
+ #calendar{margin-top:-9px;}
23
+ #fc-btn-agenda{ padding-left: 1px;}
24
+
25
+ #founder{ padding: 1px; padding-top: 5px; text-align: center; }
26
+ #founder #created{display: inline-block;}
27
+ #founder #thumb{display: inline-block;}
28
+
29
+ .sb_wrapper input[type="text"],
30
+ ul.sb_dropdown{
31
+ border:1px solid #fff;
32
+ background: #fafafa;
33
+ background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#fafafa));
34
+ background: -moz-linear-gradient(top, #f2f2f2, #fafafa);
35
+ font-size:24px;
36
+ font-family:"Myriad Pro", "Trebuchet MS", sans-serif;
37
+ -moz-box-shadow:1px 1px 3px #555;
38
+ -webkit-box-shadow:1px 1px 3px #555;
39
+ -box-shadow:1px 1px 3px #555;
40
+ outline:none;
41
+ padding:6px 5px 6px 20px;
42
+ text-shadow:1px 1px 1px #fff;
43
+ width:295px;
44
+ float:left;
45
+ margin:3px 0px;
46
+ }
47
+ ul.sb_dropdown{
48
+ float:left;
49
+ margin-right:50px;
50
+ list-style:none;
51
+ width:295px;
52
+ padding:6px 5px;
53
+ -moz-border-radius:0px 0px 10px 10px;
54
+ -webkit-border-bottom-right-radius:10px;
55
+ -webkit-border-bottom-left-radius:10px;
56
+ border-bottom-right-radius:10px;
57
+ border-bottom-left-radius:10px;
58
+ }
59
+ ul.sb_dropdown li{
60
+ font-size:8px;
61
+ line-height:2px;
62
+ height:22px;
63
+ float:left;
64
+ width:30%;
65
+ }
66
+ ul.sb_dropdown li input[type="checkbox"]{
67
+ float:left;
68
+ margin:10px 4px 0 5px;
69
+ }
70
+ ul.sb_dropdown li.sb_filter{
71
+ width:148px;
72
+ border:1px solid #f9f9f9;
73
+ clear:both;
74
+ background: #ddd;
75
+ font-size:12px;
76
+ text-transform:uppercase;
77
+ letter-spacing:1px;
78
+ color:#444;
79
+ height:16px;
80
+ line-height:16px;
81
+ padding:5px;
82
+ -moz-box-shadow:0px 0px 2px #777;
83
+ -webkit-box-shadow:0px 0px 3px #555 inset;
84
+ -box-shadow:0px 0px 3px #555 inset;
85
+
86
+ }
87
+ span.sb_up,
88
+ span.sb_down{
89
+ margin-top:10px;
90
+ padding:5px 25px 5px 25px;
91
+ width:14px;
92
+ height:41px;
93
+ background-color:#f2f2f2;
94
+ background-position:center center;
95
+ background-repeat: no-repeat;
96
+ z-index:10;
97
+ border:1px solid #fff;
98
+ -moz-box-shadow:1px 0px 1px #ddd;
99
+ -webkit-box-shadow:1px 0px 1px #ddd;
100
+ -box-shadow:1px 0px 1px #ddd;
101
+
102
+ }
103
+ span.sb_up{
104
+ background-image:url(../icons/up.png);
105
+ }
106
+ span.sb_down{
107
+ background-image:url(../icons/down.png);
108
+ }
109
+ input.sb_search{
110
+ background:#f2f2f2 url(../icons/search.png) no-repeat center center;
111
+ height:43px;
112
+ width:50px;
113
+ float:left;
114
+ border:none;
115
+ margin:3px 0px;
116
+ border:1px solid #fff;
117
+ -moz-box-shadow:1px 1px 3px #555;
118
+ -webkit-box-shadow:1px 1px 3px #555;
119
+ -box-shadow:1px 1px 3px #555;
120
+ outline:none;
121
+ cursor:pointer;
122
+ }
123
+ input.sb_search:hover{
124
+ background-color:#fff;
125
+ }
126
+
127
+ .space_center_manage
128
+ {
129
+ padding-right: 0;
130
+ padding-top: 9px;
131
+ text-align: left;
132
+ }
133
+ .tie_form {
134
+ display: inline;
135
+ height: 1%;
136
+ margin: 0 0;
137
+ overflow: hidden;
138
+ }
139
+ #contact_data{width: 250px;}
140
+
141
+
142
+ .session_wrapper1,.session_wrapper2{float:left;display:block;}
143
+ .session_wrapper1{
144
+ width:14%;
145
+ text-align:center;
146
+ margin:15px 0 15px 0;
147
+ color:#000;
148
+ }
149
+ .session_wrapper2{width:86%;padding-top: 5px;}
150
+
151
+ .event_date_image{margin: 0px 10px 0px 0px;width:100%;color:black;text-align:center;font-weight: bold;vertical-align: middle;}
152
+ .event_day{font-size: 3.5em;line-height:90%;}
153
+ .event_month{font-size: 2.5em;line-height:80%;}
154
+ .event_year{font-size: 1.2em;line-height:110%;}
155
+ .event_hour{font-size: 1.5em;line-height:80%;min-width: 30px; min-height: 20px;}
156
+ .event_day_name{font-size: 1em;line-height:80%;}
157
+ .event_time{font-size: 1em; line-height:50%;}
158
+
159
+ .session_title{
160
+ border-bottom: 1px solid #ccc;
161
+ width: 100%;
162
+ }
163
+
164
+ .schedule{ height: 85px;}
165
+
166
+ .block .session{height: 110px;}
167
+ .block .session_title_black {color: black;}
168
+ .block .session_content{font-size: 13px;}
169
+
170
+
171
+
172
+
173
+
174
+ .sb_wrapper input[type="text"],
175
+ ul.sb_dropdown{
176
+ border:1px solid #fff;
177
+ background: #fafafa;
178
+ background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#fafafa));
179
+ background: -moz-linear-gradient(top, #f2f2f2, #fafafa);
180
+ font-size:24px;
181
+ font-family:"Myriad Pro", "Trebuchet MS", sans-serif;
182
+ -moz-box-shadow:1px 1px 3px #555;
183
+ -webkit-box-shadow:1px 1px 3px #555;
184
+ -box-shadow:1px 1px 3px #555;
185
+ outline:none;
186
+ padding:6px 5px 6px 20px;
187
+ text-shadow:1px 1px 1px #fff;
188
+ width:100px;
189
+ float: right;
190
+ margin:3px 0px;
191
+ margin-right:0px;
192
+ z-index: 2000;
193
+ }s
194
+ ul.sb_dropdown{
195
+ float:right;
196
+ list-style:none;
197
+ z-index:2000;
198
+ width:150px;
199
+ padding:6px 5px;
200
+ -moz-border-radius:0px 0px 10px 10px;
201
+ -webkit-border-bottom-right-radius:10px;
202
+ -webkit-border-bottom-left-radius:10px;
203
+ border-bottom-right-radius:10px;
204
+ border-bottom-left-radius:10px;
205
+ }
206
+ ul.sb_dropdown li{
207
+ float: left;
208
+ font-size: 12px;
209
+ height: 25px;
210
+ line-height: 10px;
211
+ width: 100%;
212
+ }
213
+ ul.sb_dropdown li input[type="checkbox"]{
214
+ float:right;
215
+ margin:0px 3px 0 5px;
216
+ }
217
+ ul.sb_dropdown li.sb_filter{
218
+ width:295px;
219
+ border:1px solid #f9f9f9;
220
+ clear:both;
221
+ background: #ddd;
222
+ font-size:12px;
223
+ text-transform:uppercase;
224
+ letter-spacing:1px;
225
+ color:#444;
226
+ height:16px;
227
+ line-height:16px;
228
+ padding:5px;
229
+ -moz-box-shadow:0px 0px 2px #777;
230
+ -webkit-box-shadow:0px 0px 3px #555 inset;
231
+ -box-shadow:0px 0px 3px #555 inset;
232
+
233
+ }
234
+ span.sb_up,
235
+ span.sb_down{
236
+
237
+ width:14px;
238
+ height:41px;
239
+ background-color:#f2f2f2;
240
+ /*background-position:center center;*/
241
+ background-position: left center;
242
+ background-repeat: no-repeat;
243
+ z-index:10;
244
+ border:1px solid #fff;
245
+ -moz-box-shadow:1px 0px 1px #ddd;
246
+ -webkit-box-shadow:1px 0px 1px #ddd;
247
+ -box-shadow:1px 0px 1px #ddd;
248
+
249
+ }
250
+ span.sb_up{
251
+ background-image:url("icons/up.png");
252
+ }
253
+ span.sb_down{
254
+ background-image:url("icons/down.png");
255
+ }
256
+ input.sb_search{
257
+ background:#f2f2f2 url("icons/search.png") no-repeat center center;
258
+ height:43px;
259
+ width:50px;
260
+ float:left;
261
+ border:none;
262
+ margin:3px 0px;
263
+ border:1px solid #fff;
264
+ -moz-box-shadow:1px 1px 3px #555;
265
+ -webkit-box-shadow:1px 1px 3px #555;
266
+ -box-shadow:1px 1px 3px #555;
267
+ outline:none;
268
+ cursor:pointer;
269
+ }
270
+ input.sb_search:hover{
271
+ background-color:#fff;
272
+ }
273
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: social_stream-events
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 10
10
- version: 0.0.10
9
+ - 11
10
+ version: 0.0.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - Diego Carrera
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2011-10-11 00:00:00 +02:00
20
+ date: 2011-10-13 00:00:00 +02:00
21
21
  default_executable:
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency
@@ -28,12 +28,12 @@ dependencies:
28
28
  requirements:
29
29
  - - ~>
30
30
  - !ruby/object:Gem::Version
31
- hash: 31
31
+ hash: 29
32
32
  segments:
33
33
  - 0
34
34
  - 9
35
- - 18
36
- version: 0.9.18
35
+ - 19
36
+ version: 0.9.19
37
37
  name: social_stream-base
38
38
  version_requirements: *id001
39
39
  - !ruby/object:Gem::Dependency
@@ -193,18 +193,8 @@ files:
193
193
  - app/assets/images/logos/profile/event.png
194
194
  - app/assets/images/logos/representation/event.png
195
195
  - app/assets/images/tab_bottom.png
196
- - app/assets/javascripts/jquery.ad-gallery.js
197
- - app/assets/javascripts/jquery.ad-gallery.pack.js
198
196
  - app/assets/javascripts/schedule.js
199
197
  - app/assets/javascripts/social_stream-events.js
200
- - app/assets/stylesheets/ad_next.png
201
- - app/assets/stylesheets/ad_prev.png
202
- - app/assets/stylesheets/ad_scroll_back.png
203
- - app/assets/stylesheets/ad_scroll_forward.png
204
- - app/assets/stylesheets/fullcalendar.css
205
- - app/assets/stylesheets/fullcalendar.print.css
206
- - app/assets/stylesheets/jquery.ad-gallery.css
207
- - app/assets/stylesheets/loader.gif
208
198
  - app/assets/stylesheets/social_stream-events.css
209
199
  - app/controllers/agendas_controller.rb
210
200
  - app/controllers/events_controller.rb
@@ -271,6 +261,17 @@ files:
271
261
  - social_stream-events.gemspec
272
262
  - vendor/assets/javascripts/fullcalendar.js
273
263
  - vendor/assets/javascripts/gcal.js
264
+ - vendor/assets/javascripts/jquery.ad-gallery.js
265
+ - vendor/assets/javascripts/jquery.ad-gallery.pack.js
266
+ - vendor/assets/stylesheets/ad_next.png
267
+ - vendor/assets/stylesheets/ad_prev.png
268
+ - vendor/assets/stylesheets/ad_scroll_back.png
269
+ - vendor/assets/stylesheets/ad_scroll_forward.png
270
+ - vendor/assets/stylesheets/fullcalendar.css
271
+ - vendor/assets/stylesheets/fullcalendar.print.css
272
+ - vendor/assets/stylesheets/jquery.ad-gallery.css
273
+ - vendor/assets/stylesheets/loader.gif
274
+ - vendor/assets/stylesheets/social_stream-events.css
274
275
  has_rdoc: true
275
276
  homepage: http://github.com/ging/social_stream-events
276
277
  licenses: []