iasd-bootstrap-sass 1.5.0 → 1.6.0
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.
- checksums.yaml +4 -4
- data/lib/iasd-bootstrap-sass/version.rb +1 -1
- data/stylesheets/_iasd-block-grid.scss +53 -0
- data/stylesheets/_iasd-blogs.scss +69 -0
- data/stylesheets/_iasd-special-components.scss +133 -0
- data/stylesheets/_iasd-templates-apps.scss +879 -0
- data/stylesheets/_iasd-variables.scss +7 -0
- data/stylesheets/_iasd-widgets.scss +470 -2
- data/stylesheets/iasd-bootstrap.scss +12 -8
- data/templates/project/img/logos_pt_BR/iasd_apps_logo.png +0 -0
- data/templates/project/img/widgets/slider_apps_next.png +0 -0
- data/templates/project/img/widgets/slider_apps_prev.png +0 -0
- data/templates/project/lib/iasd-bootstrap.js +76 -1
- data/templates/project/lib/iasd-bootstrap.min.js +2 -2
- data/templates/project/lib/iasd_apps_home.js +39 -0
- data/templates/project/lib/iasd_widgets.js +75 -0
- data/templates/project/lib/ltie9.js +1 -1
- data/templates/project/manifest.rb +3 -0
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b97e8ca2968817b2c33bffa070317364d9a4c14e
|
4
|
+
data.tar.gz: 6f25f0cdd46efa77a650fc54c4937a1dd23342fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7c5fc77773ddeab86176ca597899e599e5d3de35a3a599bbbcd015369d53c52df3fad46f25f87b44f39cce118ac49b324debdf8b55edc5145995586746cfd05
|
7
|
+
data.tar.gz: a681efa2ac120604ba4349b86917a039873aa9d3ad2c7c14d8ff4addc55d0d61e630d30feee3005c42bafc33652e479fa9c1338918c3f3739e8d20c15836bfdb
|
@@ -0,0 +1,53 @@
|
|
1
|
+
// Block Grid
|
2
|
+
// Technique adapted from Foundation 5 for Bootstrap 3.
|
3
|
+
// https://github.com/zurb/foundation/blob/f755d8704123f86c281ede0b171881e2672f150d/scss/foundation/components/_block-grid.scss
|
4
|
+
// Original LESS Version by Christopher Mitchell (https://gist.github.com/ChrisTM)
|
5
|
+
// Converted to SCSS by Rasmus Jürs (https://github.com/Jursdotme)
|
6
|
+
|
7
|
+
[class*="block-grid-"] {
|
8
|
+
display: block;
|
9
|
+
margin: -($grid-gutter-width/2);
|
10
|
+
padding: 0;
|
11
|
+
@include clearfix();
|
12
|
+
}
|
13
|
+
|
14
|
+
.block-grid-item {
|
15
|
+
display: inline;
|
16
|
+
margin: 0;
|
17
|
+
padding: ($grid-gutter-width/2);
|
18
|
+
height: auto;
|
19
|
+
float: left;
|
20
|
+
list-style: none;
|
21
|
+
}
|
22
|
+
|
23
|
+
@mixin block-grid ($per-row) {
|
24
|
+
& > .block-grid-item {
|
25
|
+
width: (100%/$per-row);
|
26
|
+
|
27
|
+
$nth-equation: #{$per-row}n+'+'+1;
|
28
|
+
&:nth-of-type(n) { clear: none; }
|
29
|
+
&:nth-of-type(#{$nth-equation}) { clear: both; }
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
@mixin block-grids($size) {
|
34
|
+
.block-grid-#{$size}-1 { @include block-grid(1); }
|
35
|
+
.block-grid-#{$size}-2 { @include block-grid(2); }
|
36
|
+
.block-grid-#{$size}-3 { @include block-grid(3); }
|
37
|
+
.block-grid-#{$size}-4 { @include block-grid(4); }
|
38
|
+
.block-grid-#{$size}-5 { @include block-grid(5); }
|
39
|
+
.block-grid-#{$size}-6 { @include block-grid(6); }
|
40
|
+
.block-grid-#{$size}-7 { @include block-grid(7); }
|
41
|
+
.block-grid-#{$size}-8 { @include block-grid(8); }
|
42
|
+
.block-grid-#{$size}-9 { @include block-grid(9); }
|
43
|
+
.block-grid-#{$size}-10 { @include block-grid(10); }
|
44
|
+
.block-grid-#{$size}-11 { @include block-grid(11); }
|
45
|
+
.block-grid-#{$size}-12 { @include block-grid(12); }
|
46
|
+
}
|
47
|
+
|
48
|
+
@include block-grids(xs);
|
49
|
+
@media (min-width: $screen-sm) { @include block-grids(sm) }
|
50
|
+
@media (min-width: $screen-md) { @include block-grids(md) }
|
51
|
+
@media (min-width: $screen-lg) { @include block-grids(lg) }
|
52
|
+
|
53
|
+
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { @include block-grids(ls) }
|
@@ -361,6 +361,47 @@ a{
|
|
361
361
|
}
|
362
362
|
}
|
363
363
|
|
364
|
+
.blogs_post_meta {
|
365
|
+
color: $text-color;
|
366
|
+
font-weight: normal;
|
367
|
+
list-style: none;
|
368
|
+
margin: 20px 0 !important;
|
369
|
+
li {
|
370
|
+
position: relative;
|
371
|
+
display: inline-block;
|
372
|
+
margin-left: 17px;
|
373
|
+
overflow: visible !important;
|
374
|
+
+ li {
|
375
|
+
box-shadow: none !important;
|
376
|
+
padding-top: 0 !important;
|
377
|
+
margin: 0 0 0 35px !important;
|
378
|
+
}
|
379
|
+
time {
|
380
|
+
margin: 0 !important;
|
381
|
+
}
|
382
|
+
}
|
383
|
+
.icon_clock, .icon_comments {
|
384
|
+
&:before {
|
385
|
+
font-family: fontAwesome;
|
386
|
+
left: -16px;
|
387
|
+
line-height: 20px;
|
388
|
+
position: absolute;
|
389
|
+
text-align: center;
|
390
|
+
top: 0;
|
391
|
+
color: $alt-text-color;
|
392
|
+
}
|
393
|
+
}
|
394
|
+
.icon_clock:before {
|
395
|
+
content: '\f017';
|
396
|
+
}
|
397
|
+
.icon_comments {
|
398
|
+
color: $theme-main-color;
|
399
|
+
&:before {
|
400
|
+
content: '\f075';
|
401
|
+
}
|
402
|
+
}
|
403
|
+
}
|
404
|
+
|
364
405
|
.iasd-widget {
|
365
406
|
|
366
407
|
ul {
|
@@ -400,6 +441,34 @@ a{
|
|
400
441
|
}
|
401
442
|
}
|
402
443
|
|
444
|
+
.mejs-container {
|
445
|
+
.mejs-controls {
|
446
|
+
border: solid 1px #dfd8d0;
|
447
|
+
background: #ffffff !important;
|
448
|
+
.mejs-playpause-button {
|
449
|
+
border-right: solid 1px #dfd8d0;
|
450
|
+
}
|
451
|
+
.mejs-time-total {
|
452
|
+
background: #e1d7ce !important;
|
453
|
+
}
|
454
|
+
.mejs-time-rail .mejs-time-loaded,
|
455
|
+
.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
|
456
|
+
background: #e1d7ce !important;
|
457
|
+
}
|
458
|
+
.mejs-time-rail .mejs-time-current,
|
459
|
+
.mejs-horizontal-volume-slider .mejs-horizontal-volume-current{
|
460
|
+
background: #928a7d !important;
|
461
|
+
}
|
462
|
+
.mejs-volume-button {
|
463
|
+
border-left: solid 1px #dfd8d0;
|
464
|
+
}
|
465
|
+
.mejs-time span {
|
466
|
+
color: #90897f !important;
|
467
|
+
}
|
468
|
+
}
|
469
|
+
}
|
470
|
+
|
471
|
+
|
403
472
|
@media (min-width: $screen-md) {
|
404
473
|
html:not(.touch){
|
405
474
|
.mejs-time-rail{
|
@@ -0,0 +1,133 @@
|
|
1
|
+
.iasd-app-card {
|
2
|
+
display: block;
|
3
|
+
width: 170px;
|
4
|
+
padding-top: 15px;
|
5
|
+
padding-right: 15px;
|
6
|
+
padding-left: 15px;
|
7
|
+
padding-bottom: 10px;
|
8
|
+
margin: 0 auto;
|
9
|
+
border: solid 1px $border-base;
|
10
|
+
border-radius: 5px;
|
11
|
+
background: #ffffff;
|
12
|
+
h3 {
|
13
|
+
font-size: 14px !important;
|
14
|
+
line-height: 17px !important;
|
15
|
+
margin: 0 0 10px 0 !important;
|
16
|
+
font-weight: 900 !important;
|
17
|
+
font-style: normal !important;
|
18
|
+
width: 140px;
|
19
|
+
white-space: nowrap;
|
20
|
+
overflow: hidden;
|
21
|
+
text-overflow: ellipsis;
|
22
|
+
color: $theme-main-color;
|
23
|
+
}
|
24
|
+
figure {
|
25
|
+
display: block;
|
26
|
+
position: relative;
|
27
|
+
width: 140px;
|
28
|
+
margin-bottom: 15px;
|
29
|
+
img {
|
30
|
+
@include border-radius(5px);
|
31
|
+
max-width: 100%;
|
32
|
+
margin: 0 auto;
|
33
|
+
}
|
34
|
+
figcaption {
|
35
|
+
background: $theme-main-color; //IE8 Fallback :(
|
36
|
+
background: rgba($theme-main-color, .9);
|
37
|
+
top: 10px;
|
38
|
+
height: 20px;
|
39
|
+
left: 0;
|
40
|
+
margin: 0;
|
41
|
+
max-width: 90%;
|
42
|
+
overflow: visible;
|
43
|
+
padding: 0;
|
44
|
+
position: absolute;
|
45
|
+
span {
|
46
|
+
@include text-overflow();
|
47
|
+
color: $body-bg;
|
48
|
+
display: inline-block;
|
49
|
+
font-family: $alt-font-family-sans-serif;
|
50
|
+
font-size: 10px;
|
51
|
+
font-weight: 500;
|
52
|
+
line-height: 12px;
|
53
|
+
padding: 4px 5px;
|
54
|
+
text-transform: uppercase;
|
55
|
+
width: 100%;
|
56
|
+
}
|
57
|
+
&:after {
|
58
|
+
border: {
|
59
|
+
color: transparent transparent transparent $theme-main-color; //IE8 Fallback :(
|
60
|
+
color: transparent transparent transparent rgba($theme-main-color, .9);
|
61
|
+
style: solid;
|
62
|
+
width: 10px 0 10px 7px;
|
63
|
+
}
|
64
|
+
content: '';
|
65
|
+
height: 0px;
|
66
|
+
position: absolute;
|
67
|
+
right: -7px;
|
68
|
+
top: 0;
|
69
|
+
width: 0px;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
}
|
73
|
+
ul {
|
74
|
+
padding: 0;
|
75
|
+
list-style: none;
|
76
|
+
li {
|
77
|
+
float: left;
|
78
|
+
position: relative;
|
79
|
+
display: block;
|
80
|
+
width: 15px;
|
81
|
+
height: 15px;
|
82
|
+
&:after {
|
83
|
+
position: absolute;
|
84
|
+
display: block;
|
85
|
+
left: 0;
|
86
|
+
width: 15px;
|
87
|
+
height: 15px;
|
88
|
+
line-height: 20px;
|
89
|
+
font-size: 15px;
|
90
|
+
text-indent: 0;
|
91
|
+
font-family: FontAwesome;
|
92
|
+
}
|
93
|
+
+ li {
|
94
|
+
margin-left: 10px;
|
95
|
+
margin-top: 0 !important;
|
96
|
+
}
|
97
|
+
&.ios {
|
98
|
+
&:after {
|
99
|
+
content: '\f179';
|
100
|
+
color: $apple-color;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
&.android {
|
104
|
+
&:after {
|
105
|
+
content: '\f17b';
|
106
|
+
color: $android-color;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
&.windows {
|
110
|
+
&:after {
|
111
|
+
content: '\f17a';
|
112
|
+
color: $windows-color;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
}
|
117
|
+
small {
|
118
|
+
display: block;
|
119
|
+
margin-top: 20px;
|
120
|
+
font-weight: 700;
|
121
|
+
text-align: right;
|
122
|
+
text-transform: uppercase;
|
123
|
+
color: $android-color;
|
124
|
+
}
|
125
|
+
.iasd-app-dev {
|
126
|
+
display: inline-block;
|
127
|
+
width: 140px;
|
128
|
+
white-space: nowrap;
|
129
|
+
overflow: hidden;
|
130
|
+
text-overflow: ellipsis;
|
131
|
+
color: $alt-text-color;
|
132
|
+
}
|
133
|
+
}
|