iasd-bootstrap-sass 1.6.4 → 1.7.0

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: 33ad4998a6af66014d0176fd6dc5364520706aec
4
- data.tar.gz: 6aa8f513d7bd32739760f380fadd2deb51b0a732
3
+ metadata.gz: 7e68406137a3c940c5c6eaa91dfd216da38eb7ba
4
+ data.tar.gz: 7d66637ad707ebbf9d73ef5f0d68aa2b1aea08d3
5
5
  SHA512:
6
- metadata.gz: 6b6b17ecf7f7fda3a4828b46b418828425436c1cba7b82bac7886ae4b596b9074a2d4034eb30531a1dc22833f7cf61c80a1b416e48652b2f3c77bd224d644869
7
- data.tar.gz: d058f6bbf45017ba2c01edef8478d4997d2c135489407926115d35bd8d5d54a9a01361655cf797490105313c6152d0241225ecfb70eb779d49a26366cf497947
6
+ metadata.gz: 4903132d2168fa7ef734d151a7c09b945366bae1f6470092665c4876161ed73ac9303526e59aca36b4872df58d8a46928d79f64e93e3a91cab4d919e4d34be8d
7
+ data.tar.gz: 370fead748fad3d6ab2c72c6dd71f3a4fca243b76e0d474e6051bc1a7bb6fa69e6cacd99942e11e421f5fe75eb12f51d8ef18591dfa849820db67f5ba724bed4
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module IASD
3
- VERSION = "1.6.4"
3
+ VERSION = "1.7.0"
4
4
  end
5
5
  end
@@ -179,6 +179,17 @@ a{
179
179
  }
180
180
  }
181
181
  }
182
+
183
+ .snapchat_svg{
184
+ width: 23px;
185
+ height: 17px;
186
+ line-height: 26px;
187
+ text-indent: 0px;
188
+ position: absolute;
189
+ margin-top: 4px;
190
+ margin-left: 1px;
191
+ fill: lighten($border-base, 7%);
192
+ }
182
193
  }
183
194
 
184
195
  .iasd-posts-archive{
@@ -0,0 +1,518 @@
1
+ .rpsp-front-page, .rpsp-single, .rpsp-archive-videos {
2
+ h1 {
3
+ -moz-box-shadow: 0 4px 0 #eee9e3;
4
+ -webkit-box-shadow: 0 4px 0 #eee9e3;
5
+ box-shadow: 0 4px 0 #eee9e3;
6
+ border-bottom: 1px solid #e0d8cd;
7
+ color: #39733c;
8
+ display: inline-block;
9
+ font-family: "Futura Std",Helvetica,Arial,sans-serif;
10
+ font-size: 25px !important;
11
+ font-weight: 300 !important;
12
+ line-height: 35px !important;
13
+ text-transform: uppercase;
14
+ width: 100%;
15
+ overflow: hidden;
16
+ text-overflow: ellipsis;
17
+ white-space: nowrap;
18
+ margin: 0 0 35px 0 !important;
19
+ }
20
+ }
21
+
22
+ #iasd-chapter-prevnext {
23
+ float: left;
24
+ width: 100%;
25
+ h1 {
26
+ border-bottom: 0;
27
+ box-shadow: none;
28
+ text-transform: none;
29
+ font-weight: 700 !important;
30
+ }
31
+ .page-prevnext {
32
+ &.pull-right {
33
+ text-align: right;
34
+ a {
35
+ float: right;
36
+ }
37
+ .btn-default {
38
+ float: right;
39
+ margin-left: 14px;
40
+ margin-right: 0;
41
+ }
42
+ }
43
+ a {
44
+ @include text-overflow;
45
+ border: 0;
46
+ font-weight: bold;
47
+ color: $theme-main-color;
48
+ display: block;
49
+ float: left;
50
+ font-weight: bold;
51
+ max-width: 85%;
52
+ &:hover, &:focus {
53
+ color: lighten($theme-main-color, 5%);
54
+ }
55
+ }
56
+ em {
57
+ @include text-overflow;
58
+ display: block;
59
+ margin-bottom: -9px;
60
+ }
61
+ .btn-default {
62
+ float: left;
63
+ font-size: 21px;
64
+ height: 40px;
65
+ line-height: 21px;
66
+ margin-right: 14px;
67
+ width: 30px;
68
+ border: 0;
69
+ background-color: $border-base;
70
+ color: $alt-link-color;
71
+ }
72
+ .hidden-xs {
73
+ a {
74
+ margin-top: 9px;
75
+ }
76
+ }
77
+ }
78
+ }
79
+
80
+ .rpsp-social-header {
81
+ position: relative;
82
+ ul {
83
+ position: absolute;
84
+ top: 0;
85
+ right: 0;
86
+ height: 25px;
87
+ li {
88
+ display: inline-block;
89
+ float: left;
90
+ a {
91
+ position: relative;
92
+ display: block;
93
+ height: 25px;
94
+ width: 25px;
95
+ border-radius: 50%;
96
+ &:after {
97
+ position: absolute;
98
+ top: 50%;
99
+ left: 50%;
100
+ font-size: 15px;
101
+ color: #ffffff;
102
+ font-family: fontAwesome;
103
+ }
104
+ &.facebook {
105
+ background-color: #3b5998;
106
+ &:after {
107
+ content: '\f09a';
108
+ margin-top: -9px;
109
+ margin-left: -3px;
110
+ }
111
+ }
112
+ &.twitter {
113
+ background-color: #55acee;
114
+ &:after {
115
+ content: '\f099';
116
+ margin-top: -10px;
117
+ margin-left: -6px;
118
+ }
119
+ }
120
+ &.email {
121
+ background-color: #78a326;
122
+ &:after {
123
+ content: '\f003';
124
+ margin-top: -10px;
125
+ margin-left: -7px;
126
+ }
127
+ }
128
+ &.comments {
129
+ background-color: #78a326;
130
+ &:after {
131
+ content: '\f0e5';
132
+ margin-top: -11px;
133
+ margin-left: -7px;
134
+ }
135
+ }
136
+ }
137
+ + li {
138
+ margin-top: 0 !important;
139
+ margin-left: 8px;
140
+ }
141
+ }
142
+ }
143
+ }
144
+
145
+ .chapter-row {
146
+ margin-bottom: 70px;;
147
+ }
148
+
149
+ .chapter-header {
150
+ text-align: center;
151
+ }
152
+
153
+ .chapter-content {
154
+ padding-top: 45px;
155
+ padding-right: 35px;
156
+ padding-bottom: 40px;
157
+ padding-left: 35px;
158
+ border: solid 1px $border-base;
159
+ background: #ffffff;
160
+ ol {
161
+ padding-top: 0;
162
+ padding-right: 0;
163
+ padding-bottom: 0;
164
+ padding-left: 25px;
165
+ }
166
+ .chapter-content-header {
167
+ position: relative;
168
+ ul {
169
+ position: absolute;
170
+ top: 0;
171
+ right: 0;
172
+ li {
173
+ display: inline-block;
174
+ float: left;
175
+ a {
176
+ position: relative;
177
+ display: block;
178
+ height: 25px;
179
+ width: 25px;
180
+ border-radius: 50%;
181
+ &:after {
182
+ position: absolute;
183
+ top: 50%;
184
+ left: 50%;
185
+ font-size: 15px;
186
+ color: #ffffff;
187
+ font-family: fontAwesome;
188
+ }
189
+ &.facebook {
190
+ background-color: #3b5998;
191
+ &:after {
192
+ content: '\f09a';
193
+ margin-top: -9px;
194
+ margin-left: -3px;
195
+ }
196
+ }
197
+ &.twitter {
198
+ background-color: #55acee;
199
+ &:after {
200
+ content: '\f099';
201
+ margin-top: -10px;
202
+ margin-left: -6px;
203
+ }
204
+ }
205
+ &.email {
206
+ background-color: #78a326;
207
+ &:after {
208
+ content: '\f003';
209
+ margin-top: -10px;
210
+ margin-left: -7px;
211
+ }
212
+ }
213
+ &.comments {
214
+ background-color: #78a326;
215
+ &:after {
216
+ content: '\f0e5';
217
+ margin-top: -11px;
218
+ margin-left: -7px;
219
+ }
220
+ }
221
+ }
222
+ + li {
223
+ margin-left: 8px;
224
+ }
225
+ }
226
+ }
227
+ }
228
+
229
+ .comments-link {
230
+ display: block;
231
+ margin-top: 45px;
232
+ padding-top: 15px;
233
+ border-top: solid 1px $border-base;
234
+ color: $theme-main-color;
235
+ }
236
+ }
237
+
238
+ .entry-content {
239
+ .chapter-content-header, .rpsp-social-header {
240
+ ul {
241
+ margin-bottom: 0;
242
+ }
243
+ }
244
+ }
245
+
246
+ .weekly-reading {
247
+ padding: 25px;
248
+ margin-bottom: 65px;
249
+ border: solid 1px $border-base;
250
+ background: #ffffff;
251
+ }
252
+
253
+ .weekly-reading-img {
254
+ margin-bottom: 10px;
255
+ img {
256
+ border: solid 1px rgba(0,0,0,0.3);
257
+ }
258
+ .owl-controls {
259
+ margin-top: -30px;
260
+ }
261
+ }
262
+
263
+ .share-reading-img {
264
+ small {
265
+ float: left;
266
+ margin-right: 15px;
267
+ }
268
+
269
+ ul {
270
+ float: left;
271
+ padding: 0;
272
+ li {
273
+ display: inline-block;
274
+ float: left;
275
+ a {
276
+ position: relative;
277
+ display: block;
278
+ height: 25px;
279
+ width: 25px;
280
+ border-radius: 50%;
281
+ &:after {
282
+ position: absolute;
283
+ top: 50%;
284
+ left: 50%;
285
+ font-size: 15px;
286
+ color: #ffffff;
287
+ font-family: fontAwesome;
288
+ }
289
+ &.facebook {
290
+ background-color: #3b5998;
291
+ &:after {
292
+ content: '\f09a';
293
+ margin-top: -9px;
294
+ margin-left: -3px;
295
+ }
296
+ }
297
+ &.twitter {
298
+ background-color: #55acee;
299
+ &:after {
300
+ content: '\f099';
301
+ margin-top: -10px;
302
+ margin-left: -6px;
303
+ }
304
+ }
305
+ }
306
+ + li {
307
+ margin-left: 8px;
308
+ }
309
+ }
310
+ }
311
+ }
312
+
313
+ .widget-projeto-rpsp {
314
+ figure {
315
+ margin-bottom: 20px;
316
+ }
317
+ .get-app {
318
+ color: #ffffff !important;
319
+ span {
320
+ display: inline-block;
321
+ float: left;
322
+ position: relative;
323
+ height: 30px;
324
+ width: 20px;
325
+ margin-right: 10px;
326
+ font-family: fontAwesome;
327
+ &:before {
328
+ position: absolute;
329
+ left: 0;
330
+ bottom: 0;
331
+ font-size: 25px;
332
+ }
333
+ &.ios {
334
+ &:before {
335
+ content: '\f179';
336
+ }
337
+ }
338
+ &.android {
339
+ &:before {
340
+ content: '\f17b';
341
+ }
342
+ }
343
+ }
344
+ small {
345
+ display: block;
346
+ padding-left: 30px;
347
+ }
348
+ + .get-app {
349
+ margin-left: 25px;
350
+ }
351
+ &:hover {
352
+ color: $border-base !important;
353
+ }
354
+ }
355
+ }
356
+
357
+ .iasd-video-responsive {
358
+ position: relative;
359
+ padding-bottom: 56.25%; /* 16:9 */
360
+ padding-top: 25px;
361
+ height: 0;
362
+ iframe {
363
+ position: absolute;
364
+ top: 0;
365
+ left: 0;
366
+ width: 100%;
367
+ height: 100%;
368
+ }
369
+ }
370
+
371
+ .comments-count {
372
+ position: relative;
373
+ padding-left: 16px;
374
+ color: $alt-link-color !important;
375
+ &:before {
376
+ content: '\f075';
377
+ display: block;
378
+ position: absolute;
379
+ left: 0;
380
+ width: 16px;
381
+ height: 13px;
382
+ font-family: fontAwesome;
383
+ }
384
+ }
385
+
386
+ // SINGLES
387
+
388
+ .rpsp-single {
389
+ .entry-content {
390
+ ul {
391
+ li + li {
392
+ margin-top: 0 !important;
393
+ }
394
+ }
395
+ }
396
+ }
397
+
398
+ .rpsp-single-video, .rpsp-single-card {
399
+ #iasd-page-prevnext {
400
+ padding-top: 15px;
401
+ border-top: 0;
402
+ }
403
+ }
404
+
405
+ .rpsp-single-card {
406
+ img {
407
+ margin-bottom: 0;
408
+ }
409
+ }
410
+
411
+ // ARCHIVES
412
+
413
+ .rpsp-archive-videos, .rpsp-archive-cards {
414
+ .col-sm-4 {
415
+ margin-bottom: 35px;
416
+ }
417
+ img {
418
+ border: solid 1px #979797;
419
+ }
420
+ h2 {
421
+ display: inline-block;
422
+ }
423
+ select {
424
+ width: 100%;
425
+ border-color: $border-base;
426
+ background: #ffffff;
427
+ }
428
+ }
429
+
430
+ // MEDIA QUERIES
431
+
432
+ @media (min-width: $screen-md) {
433
+ #iasd-chapter-prevnext {
434
+ &.hidden-md {
435
+ display: none !important;
436
+ }
437
+ }
438
+ }
439
+
440
+ @media (max-width: $screen-sm-max) {
441
+ #iasd-chapter-prevnext {
442
+ float: none;
443
+ width: auto;
444
+ margin-bottom: 30px;
445
+ }
446
+ }
447
+
448
+ @media (max-width: $screen-sm-max) {
449
+ .chapter-content {
450
+ margin-bottom: 65px;
451
+ padding: 20px;
452
+ .chapter-content-header {
453
+ ul {
454
+ position: relative;
455
+ float: right;
456
+ margin-bottom: 25px;
457
+
458
+ }
459
+ }
460
+ }
461
+ .share-reading-img {
462
+ margin-bottom: 65px;
463
+ }
464
+ .rpsp-archive-videos {
465
+ a {
466
+ h2 {
467
+ display: inline-block;
468
+ float: left;
469
+ font-size: 18px;
470
+ width: calc( 100% - 45px );
471
+ margin-bottom: 0;
472
+ white-space: nowrap;
473
+ overflow: hidden;
474
+ text-overflow: ellipsis;
475
+ }
476
+ }
477
+ }
478
+ }
479
+
480
+ @media (max-width: $screen-xs-max) {
481
+ #iasd-chapter-prevnext {
482
+ float: none;
483
+ width: auto;
484
+ margin-bottom: 30px;
485
+ }
486
+ .rpsp-social-header {
487
+ position: relative;
488
+ ul {
489
+ position: relative;
490
+ padding-left: 0 !important;
491
+ margin-bottom: 25px !important;
492
+ }
493
+ }
494
+ .rpsp-archive-videos {
495
+ .col-xs-6 {
496
+ padding-left: 11px;
497
+ padding-right: 11px;
498
+ }
499
+ a {
500
+ h2 {
501
+ display: inline-block;
502
+ float: left;
503
+ font-size: 15px;
504
+ width: calc( 100% - 18px );
505
+ margin-bottom: 0;
506
+ white-space: nowrap;
507
+ overflow: hidden;
508
+ text-overflow: ellipsis;
509
+ }
510
+ }
511
+ .comments-count {
512
+ display: inline-block;
513
+ span {
514
+ display: none;
515
+ }
516
+ }
517
+ }
518
+ }
@@ -1375,7 +1375,14 @@ hr {
1375
1375
  line-height: 27px;
1376
1376
  text-indent: 1px;
1377
1377
  }
1378
- }
1378
+ }
1379
+ &.instagram{
1380
+ &:after{
1381
+ content: '\f16d';
1382
+ line-height: 26px;
1383
+ text-indent: 0px;
1384
+ }
1385
+ }
1379
1386
  }
1380
1387
  }
1381
1388
  }
@@ -3044,7 +3044,15 @@ a.see-all-apps {
3044
3044
  }
3045
3045
  }
3046
3046
 
3047
-
3047
+ @media (min-width: 768px ) {
3048
+ .iasd-widget-about-author {
3049
+ .iasd-contact-info {
3050
+ .contact-info-title {
3051
+ height: 20px;
3052
+ }
3053
+ }
3054
+ }
3055
+ }
3048
3056
 
3049
3057
 
3050
3058
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * IASD Bootstrap v1.6.4 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.7.0 (http://styleguide.adventistas.org)
3
3
  * Copyright 2014-2015 Igreja Adventista do Sétimo Dia
4
4
  * Licensed under MIT (https://github.com/igrejaadventista/styleguide/blob/master/LICENSE)
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * IASD Bootstrap v1.6.4 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.7.0 (http://styleguide.adventistas.org)
3
3
  * Copyright 2014-2015 Igreja Adventista do Sétimo Dia
4
4
  * Licensed under MIT (https://github.com/igrejaadventista/styleguide/blob/master/LICENSE)
5
5
  */
@@ -0,0 +1,15 @@
1
+ (function($){
2
+
3
+ $(document).ready(function (){
4
+ $(".weekly-reading-img").owlCarousel({
5
+ autoPlay: 7000,
6
+ addClassActive: true,
7
+ mouseDrag: false,
8
+ singleItem: true,
9
+ slideSpeed: 700,
10
+ touchDrag: false,
11
+ transitionStyle: "fade"
12
+ });
13
+ });
14
+
15
+ })(jQuery);
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * IASD Bootstrap v1.6.4 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.7.0 (http://styleguide.adventistas.org)
3
3
  * Copyright 2014-2015 Igreja Adventista do Sétimo Dia
4
4
  * Licensed under MIT (https://github.com/igrejaadventista/styleguide/blob/master/LICENSE)
5
5
  */
@@ -188,6 +188,8 @@ javascript 'lib/iasd-bootstrap.min.js', :to => 'iasd-bootstrap.min.js'
188
188
  javascript 'lib/ltie9.js', :to => 'ltie9.js'
189
189
  javascript 'lib/ltie9.min.js', :to => 'ltie9.min.js'
190
190
 
191
+ javascript 'lib/iasd_rpsp.js', :to => 'iasd_rpsp.js'
192
+
191
193
  # Javascripts
192
194
  #%w(affix alert button carousel collapse dropdown modal popover scrollspy tab tooltip transition typeahead).each do |file|
193
195
  # javascript "#{basedir}/javascripts/bootstrap-#{file}.js", :to => "bootstrap-#{file}.js"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iasd-bootstrap-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.4
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Filipi Zimermann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-18 00:00:00.000000000 Z
11
+ date: 2015-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: compass
@@ -131,6 +131,7 @@ files:
131
131
  - stylesheets/_iasd-mixins.scss
132
132
  - stylesheets/_iasd-player-nt.scss
133
133
  - stylesheets/_iasd-plugins.scss
134
+ - stylesheets/_iasd-rpsp.scss
134
135
  - stylesheets/_iasd-special-components.scss
135
136
  - stylesheets/_iasd-templates-apps.scss
136
137
  - stylesheets/_iasd-templates.scss
@@ -298,6 +299,7 @@ files:
298
299
  - templates/project/lib/iasd_home_dsa.js
299
300
  - templates/project/lib/iasd_main_nav.js
300
301
  - templates/project/lib/iasd_plugins.js
302
+ - templates/project/lib/iasd_rpsp.js
301
303
  - templates/project/lib/iasd_widgets.js
302
304
  - templates/project/lib/jquery.badonkatrunc.min.js
303
305
  - templates/project/lib/ltie9.js