iasd-bootstrap-sass 1.0.5 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/lib/iasd-bootstrap-sass/version.rb +1 -1
  3. data/stylesheets/_iasd-base.scss +1 -1
  4. data/stylesheets/_iasd-footer.scss +3 -3
  5. data/stylesheets/_iasd-global-nav.scss +1 -0
  6. data/stylesheets/_iasd-templates.scss +191 -10
  7. data/stylesheets/_iasd-variables.scss +5 -2
  8. data/stylesheets/_iasd-widgets.scss +82 -0
  9. data/templates/project/img/blogs/formats/format_aside.png +0 -0
  10. data/templates/project/img/blogs/formats/format_audio.png +0 -0
  11. data/templates/project/img/blogs/formats/format_gallery.png +0 -0
  12. data/templates/project/img/blogs/formats/format_image.png +0 -0
  13. data/templates/project/img/blogs/formats/format_link.png +0 -0
  14. data/templates/project/img/blogs/formats/format_quote.png +0 -0
  15. data/templates/project/img/blogs/formats/format_standard.png +0 -0
  16. data/templates/project/img/blogs/formats/format_video.png +0 -0
  17. data/templates/project/img/blogs/formats@2x/format_aside@2x.png +0 -0
  18. data/templates/project/img/blogs/formats@2x/format_audio@2x.png +0 -0
  19. data/templates/project/img/blogs/formats@2x/format_gallery@2x.png +0 -0
  20. data/templates/project/img/blogs/formats@2x/format_image@2x.png +0 -0
  21. data/templates/project/img/blogs/formats@2x/format_link@2x.png +0 -0
  22. data/templates/project/img/blogs/formats@2x/format_quote@2x.png +0 -0
  23. data/templates/project/img/blogs/formats@2x/format_standard@2x.png +0 -0
  24. data/templates/project/img/blogs/formats@2x/format_video@2x.png +0 -0
  25. data/templates/project/img/logos_es_ES/iasd_header_symbol_small.png +0 -0
  26. data/templates/project/img/logos_es_ES/iasd_header_symbol_small@2x.png +0 -0
  27. data/templates/project/img/logos_pt_BR/iasd_header_symbol_small.png +0 -0
  28. data/templates/project/img/logos_pt_BR/iasd_header_symbol_small@2x.png +0 -0
  29. data/templates/project/lib/iasd-bootstrap.js +1 -1
  30. data/templates/project/lib/iasd-bootstrap.min.js +1 -1
  31. data/templates/project/lib/ltie9.js +1 -1
  32. data/templates/project/manifest.rb +18 -0
  33. metadata +22 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 112dd6d1e83ba540acfaa7a8c5d36fc22ec2018a
4
- data.tar.gz: cf86e05403b99031a1a0c5db00ca7b6af87af3a8
3
+ metadata.gz: 24acffb2e7591dd65004c09be645f5572f4c5818
4
+ data.tar.gz: e7106428f8b0e1c4ceba8872b3ac708a8a058bfb
5
5
  SHA512:
6
- metadata.gz: 49281ebb2c807b90be679948637146f2e891ee16351d09ff3c3aa3fb44fccd2b93603a0594115f1a4210d135834cdaca2d7916ad1d5d4348efd5d57832c0df2b
7
- data.tar.gz: 2254c209241dbe873c2232d54e18cc8feb53f16f6fe1957417ca5320731e3356cdb7c53848270c8397200906a0fe2525d7dcc87f8ccb253746eb0e415c19ba3e
6
+ metadata.gz: 3093bc8214299f1c6212e0ec16b7b675696237842a174ac73002298c084726c5a0c69c31f8ea9e1435e8e7c6bfbda3bd89e16abe1476d28e49c41eed059b894d
7
+ data.tar.gz: 20b087d4db0857fe432157dbe6b473e207e093db5ba1d9c12323fc86b20bbc55ebbe0c81171a06646d01ffde56fa24a1e24e132798c73ab9ef862420868e33c5
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module IASD
3
- VERSION = "1.0.5"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
@@ -91,8 +91,8 @@ h2{
91
91
  // -------------------------
92
92
 
93
93
  .well, .jumbotron, .progress{
94
- border: none;
95
94
  @include box-shadow(1px 1px 0 #fff, inset 1px 1px 0 $border-base);
95
+ border: none;
96
96
  }
97
97
 
98
98
  .jumbotron{
@@ -1,5 +1,5 @@
1
1
  body > footer{
2
- @include gradient-vertical(lighten($theme-footer-base-color, 10%), $theme-footer-base-color);
2
+ @include gradient-vertical(lighten($theme-footer-base-color, 5%), $theme-footer-base-color);
3
3
  @include box-shadow(inset 0px 5px 10px rgba(0,0,0,0.1));
4
4
  margin-top: 50px;
5
5
  padding: 50px 0;
@@ -34,9 +34,9 @@ body > footer{
34
34
  text-transform: uppercase;
35
35
  }
36
36
  .info{
37
- @include image-2x('logos_pt_BR/iasd_footer@2x.png');
37
+ @include image-2x($theme-footer-logo-retina);
38
38
  background: {
39
- image: image-url('logos_pt_BR/iasd_footer.png');
39
+ image: image-url($theme-footer-logo);
40
40
  repeat: no-repeat;
41
41
  position: top right;
42
42
  size: 160px 100px;
@@ -20,6 +20,7 @@
20
20
 
21
21
  .iasd-global_navbar-main{
22
22
  @include rgba-background(rgba(255,255,255,0.2));
23
+ @include border-radius(0);
23
24
  border: none;
24
25
  margin: 0;
25
26
  min-height: 40px;
@@ -57,6 +57,11 @@
57
57
  .mar-top-50 {
58
58
  margin-top: 50px !important;
59
59
  }
60
+ .table-cell {
61
+ display: table-cell;
62
+ float: none;
63
+ vertical-align: middle;
64
+ }
60
65
 
61
66
  @media (min-width: $screen-md) {
62
67
  .mar-bot-0-md {
@@ -198,6 +203,12 @@
198
203
  /* Global styles */
199
204
  /* ************* */
200
205
 
206
+ a {
207
+ &.load-more_posts-link {
208
+ color: $body-bg !important;
209
+ }
210
+ }
211
+
201
212
  .alert {
202
213
  -webkit-transform: translate3d(0, 0, 0);
203
214
  -moz-transform: translate3d(0, 0, 0);
@@ -608,7 +619,7 @@ aside.iasd-aside {
608
619
  padding: 0 0 0 15px !important;
609
620
  li {
610
621
  overflow: visible !important;
611
- list-style: inherit !important;
622
+ list-style: disc !important;
612
623
  & + li {
613
624
  -moz-box-shadow: none !important;
614
625
  -webkit-box-shadow: none !important;
@@ -1037,6 +1048,11 @@ hr {
1037
1048
  float: left;
1038
1049
  margin: 20px 0 0 0 !important;
1039
1050
  }
1051
+ & + .entry-content{
1052
+ border-top: 1px solid $border-base;
1053
+ margin-top: 50px;
1054
+ padding-top: 50px;
1055
+ }
1040
1056
  }
1041
1057
  .iasd-main-title {
1042
1058
  text-align: left;
@@ -1096,7 +1112,7 @@ hr {
1096
1112
  }
1097
1113
  }
1098
1114
 
1099
- .iasd-author-list, #iasd-column-header, #iasd-columnists-list {
1115
+ .iasd-author-list, .iasd-author-small, #iasd-column-header, #iasd-columnists-list {
1100
1116
  em, p {
1101
1117
  a {
1102
1118
  &:hover, &:focus, &:not(:focus) {
@@ -1130,7 +1146,7 @@ hr {
1130
1146
  }
1131
1147
  }
1132
1148
 
1133
- .iasd-author-list, .iasd-author-small, #iasd-column-header, #iasd-columnists-list {
1149
+ .iasd-author-list, .iasd-author-small, #iasd-column-header, #iasd-columnists-list, .iasd-contact-info, .iasd-widget {
1134
1150
  a {
1135
1151
  &:hover, &:focus {
1136
1152
  .img-gradient {
@@ -1197,11 +1213,9 @@ hr {
1197
1213
  }
1198
1214
 
1199
1215
  .iasd-contact-info {
1200
- @include border-radius(5px);
1201
- background: lighten($border-base, 7%);
1202
- line-height: 18px !important;
1203
- margin: 0;
1204
- padding: 10px 30px 30px 30px;
1216
+ box-shadow: none;
1217
+ display: inline-block;
1218
+ width: 100%;
1205
1219
  em, h3 {
1206
1220
  @include text-overflow;
1207
1221
  display: block;
@@ -1209,8 +1223,8 @@ hr {
1209
1223
  h3 {
1210
1224
  font-size: 16px;
1211
1225
  font-style: italic;
1212
- line-height: 26px;
1213
- margin: 20px 0 16px 0;
1226
+ line-height: 24px;
1227
+ margin: 0 0 16px 0;
1214
1228
  min-height: 22px;
1215
1229
  }
1216
1230
  p {
@@ -1223,6 +1237,102 @@ hr {
1223
1237
  color: lighten($theme-main-color, 10%) !important;
1224
1238
  }
1225
1239
  }
1240
+ .contact-info-title {
1241
+ float: right;
1242
+ }
1243
+ .contact-info-title, .float-right {
1244
+ width: 82%;
1245
+ }
1246
+ .img-circle {
1247
+ float: left;
1248
+ height: auto;
1249
+ overflow: hidden;
1250
+ position: relative;
1251
+ width: 14%;
1252
+ img {
1253
+ height: auto;
1254
+ width: 100%;
1255
+ }
1256
+ }
1257
+ .social-media{
1258
+ margin: 10px 0 0 0;
1259
+ padding: 0 !important;
1260
+ & > li{
1261
+ display: inline-block;
1262
+ height: 25px;
1263
+ width: 25px;
1264
+ & + li{
1265
+ margin-left: 10px;
1266
+ }
1267
+ & > a{
1268
+ @include border-radius(50%);
1269
+ background: $theme-main-color;
1270
+ display: block;
1271
+ height: 25px;
1272
+ position: relative;
1273
+ text-align: left;
1274
+ text-indent: -5000px;
1275
+ width: 25px;
1276
+ &:after{
1277
+ color: lighten($border-base, 7%);
1278
+ display: block;
1279
+ height: 25px;
1280
+ font-family: FontAwesome;
1281
+ font-style: normal;
1282
+ font-size: 16px;
1283
+ position: absolute;
1284
+ left: 0;
1285
+ line-height: 28px;
1286
+ text-align: center;
1287
+ text-indent: 0;
1288
+ top: 0;
1289
+ width: 25px;
1290
+ }
1291
+ &.facebook{
1292
+ &:after{
1293
+ content: '\f09a';
1294
+ text-indent: 2px;
1295
+ }
1296
+ }
1297
+ &.twitter{
1298
+ &:after{
1299
+ content: '\f099';
1300
+ line-height: 27px;
1301
+ text-indent: 2px;
1302
+ }
1303
+ }
1304
+ &.google{
1305
+ &:after{
1306
+ content: '\f0d5';
1307
+ line-height: 26px;
1308
+ text-indent: 3px;
1309
+ }
1310
+ }
1311
+ &.mail{
1312
+ &:after{
1313
+ content: '\f003';
1314
+ line-height: 25px;
1315
+ text-indent: 1px;
1316
+ }
1317
+ }
1318
+ &.link-author{
1319
+ &:after{
1320
+ content: '\f0c1';
1321
+ line-height: 27px;
1322
+ text-indent: 1px;
1323
+ }
1324
+ }
1325
+ }
1326
+ }
1327
+ }
1328
+ .well {
1329
+ display: inline-block;
1330
+ }
1331
+ }
1332
+ .entry-content {
1333
+ .iasd-contact-info {
1334
+ margin: 0 0 37px 0;
1335
+ }
1226
1336
  }
1227
1337
 
1228
1338
  @media (min-width: $screen-md) {
@@ -1233,6 +1343,66 @@ hr {
1233
1343
  }
1234
1344
  }
1235
1345
 
1346
+ @media (max-width: $screen-xs-max) {
1347
+ .iasd-contact-info {
1348
+ .contact-info-title, .float-right {
1349
+ width: 100%;
1350
+ }
1351
+ .img-circle {
1352
+ display: none;
1353
+ }
1354
+ }
1355
+ }
1356
+
1357
+ .iasd-aside {
1358
+ .social-media {
1359
+ display: none;
1360
+ }
1361
+ }
1362
+
1363
+ @media (min-width: $screen-lg) {
1364
+ .iasd-aside {
1365
+ &.col-md-4, &.col-sm-4 {
1366
+ .iasd-contact-info {
1367
+ h3 {
1368
+ text-overflow: initial;
1369
+ white-space: normal;
1370
+ }
1371
+ .contact-info-title {
1372
+ width: 58%;
1373
+ }
1374
+ .float-right {
1375
+ width: 100%;
1376
+ }
1377
+ .img-circle {
1378
+ width: 34%;
1379
+ }
1380
+ .table-cell {
1381
+ height: 100px;
1382
+ }
1383
+ }
1384
+ }
1385
+ }
1386
+ }
1387
+
1388
+ @media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
1389
+ .iasd-aside {
1390
+ &.col-md-4, &.col-sm-4 {
1391
+ .iasd-contact-info {
1392
+ .contact-info-title {
1393
+ width: 100%;
1394
+ }
1395
+ .float-right {
1396
+ width: 100%;
1397
+ }
1398
+ .img-circle {
1399
+ display: none;
1400
+ }
1401
+ }
1402
+ }
1403
+ }
1404
+ }
1405
+
1236
1406
  .iasd-history {
1237
1407
  aside {
1238
1408
  ul {
@@ -2175,6 +2345,7 @@ hr {
2175
2345
  #iasd-page-prevnext {
2176
2346
  border-top: 1px solid #e0d8cd;
2177
2347
  float: left;
2348
+ margin: 0 0 18px 0;
2178
2349
  padding-bottom: 25px;
2179
2350
  padding-top: 25px;
2180
2351
  width: 100%;
@@ -3521,6 +3692,16 @@ time {
3521
3692
  }
3522
3693
  }
3523
3694
 
3695
+ .iasd-contact-form{
3696
+ label{
3697
+ color: $alt-text-color;
3698
+ font-size: 13px;
3699
+ .required{
3700
+ color: lighten($alt-text-color, 10%);
3701
+ font-weight: 400;
3702
+ }
3703
+ }
3704
+ }
3524
3705
 
3525
3706
  /* *********************** */
3526
3707
  /* Internationalization */
@@ -37,7 +37,7 @@ $videos-main-color: #377fb2;
37
37
  $downloads-main-color: #de6739;
38
38
  $events-main-color: #b83636;
39
39
  $community-main-color: #269e9a;
40
-
40
+ $blogs-main-color: #485359;
41
41
 
42
42
  // Grays
43
43
  // -------------------------
@@ -57,7 +57,6 @@ $brand-warning: #f0ad4e !default;
57
57
  $brand-danger: #d9534f !default;
58
58
  $brand-info: #5bc0de !default;
59
59
 
60
-
61
60
  // Theme Options
62
61
  // -------------------------
63
62
 
@@ -69,6 +68,10 @@ $theme-header-background-img: 'headers/institutional.png' !default;
69
68
  $theme-es-header-background-img: $theme-header-background-img !default;
70
69
  $theme-logo: 'logos_pt_BR/iasd_header_symbol.png' !default;
71
70
  $theme-logo-retina: 'logos_pt_BR/iasd_header_symbol@2x.png' !default;
71
+ $theme-logo-small: 'logos_pt_BR/iasd_header_symbol_small.png' !default;
72
+ $theme-logo-small-retina: 'logos_pt_BR/iasd_header_symbol_small@2x.png' !default;
73
+ $theme-footer-logo: 'logos_pt_BR/iasd_footer.png' !default;
74
+ $theme-footer-logo-retina: 'logos_pt_BR/iasd_footer@2x.png' !default;
72
75
 
73
76
  // Typography
74
77
  // -------------------------
@@ -2240,4 +2240,86 @@ aside {
2240
2240
  }
2241
2241
  }
2242
2242
  }
2243
+ }
2244
+
2245
+
2246
+ // Search Box
2247
+
2248
+ .iasd-widget-search{
2249
+ form{
2250
+ margin: 35px 0;
2251
+ position: relative;
2252
+ input[type=text]{
2253
+ padding-right: 40px;
2254
+ }
2255
+ .btn-default{
2256
+ background: none;
2257
+ border: none;
2258
+ color: $theme-main-color;
2259
+ position: absolute;
2260
+ right: 0;
2261
+ text-indent: -5000px;
2262
+ top: 0;
2263
+ width: 32px;
2264
+ &:after{
2265
+ content:'\f002';
2266
+ display: block;
2267
+ font-family: FontAwesome;
2268
+ font-size: 13px;
2269
+ height: 32px;
2270
+ line-height: 32px;
2271
+ position: absolute;
2272
+ right: 0;
2273
+ text-align: center;
2274
+ text-indent: 0;
2275
+ top: 0;
2276
+ width: 32px;
2277
+ }
2278
+ &:hover, &:active{
2279
+ &:after{
2280
+ color: lighten($theme-main-color, 10%);
2281
+ }
2282
+ }
2283
+ }
2284
+ }
2285
+ }
2286
+
2287
+ // Simple list
2288
+
2289
+ .iasd-widget-list{
2290
+ ul{
2291
+ margin: 35px 0 0 0;
2292
+ padding: 0 0 0 15px;
2293
+ li{
2294
+ color: $theme-main-color;
2295
+ margin: 0;
2296
+ padding: 0 0 0 5px;
2297
+ & + li{
2298
+ margin-top: 10px;
2299
+ }
2300
+ a{
2301
+ color: $theme-main-color !important;
2302
+ font-weight: 700;
2303
+ &:hover, &:active{
2304
+ color: lighten($theme-main-color, 10%) !important;
2305
+ }
2306
+ }
2307
+ }
2308
+ }
2309
+ }
2310
+
2311
+ // Text with title
2312
+
2313
+ .iasd-widget-text_title, .iasd-contact-info{
2314
+ .well{
2315
+ @include box-shadow(none);
2316
+ font-size: 13px;
2317
+ margin: 35px 0 0 0;
2318
+ line-height: 20px;
2319
+ padding: 25px 30px 20px !important;
2320
+ p{
2321
+ font-size: 13px;
2322
+ line-height: 20px !important;
2323
+ }
2324
+ }
2243
2325
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * IASD Bootstrap v1.0.5 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.1.0 (http://styleguide.adventistas.org)
3
3
  * Copyright 2014-2014 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.0.5 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.1.0 (http://styleguide.adventistas.org)
3
3
  * Copyright 2014-2014 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.0.5 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.1.0 (http://styleguide.adventistas.org)
3
3
  * Copyright 2014-2014 Igreja Adventista do Sétimo Dia
4
4
  * Licensed under MIT (https://github.com/igrejaadventista/styleguide/blob/master/LICENSE)
5
5
  */
@@ -47,6 +47,8 @@ image 'img/logos_pt_BR/iasd_header_vertical.png', :to => 'logos_pt_BR/iasd_heade
47
47
  image 'img/logos_pt_BR/iasd_header_vertical@2x.png', :to => 'logos_pt_BR/iasd_header_vertical@2x.png'
48
48
  image 'img/logos_pt_BR/iasd_header_symbol.png', :to => 'logos_pt_BR/iasd_header_symbol.png'
49
49
  image 'img/logos_pt_BR/iasd_header_symbol@2x.png', :to => 'logos_pt_BR/iasd_header_symbol@2x.png'
50
+ image 'img/logos_pt_BR/iasd_header_symbol_small.png', :to => 'logos_pt_BR/iasd_header_symbol_small.png'
51
+ image 'img/logos_pt_BR/iasd_header_symbol_small@2x.png', :to => 'logos_pt_BR/iasd_header_symbol_small@2x.png'
50
52
  image 'img/logos_pt_BR/iasd_404.png', :to => 'logos_pt_BR/iasd_404.png'
51
53
  image 'img/logos_pt_BR/iasd_404@2x.png', :to => 'logos_pt_BR/iasd_404@2x.png'
52
54
 
@@ -119,6 +121,22 @@ image 'img/favicons/mstile-150x150.png', :to => 'favicons/mstile-150x150.png'
119
121
  image 'img/favicons/mstile-310x310.png', :to => 'favicons/mstile-310x310.png'
120
122
  image 'img/favicons/mstile-310x150.png', :to => 'favicons/mstile-310x150.png'
121
123
 
124
+ image 'img/blogs/formats/format_standard.png', :to => 'blogs/formats/format_standard.png'
125
+ image 'img/blogs/formats/format_aside.png', :to => 'blogs/formats/format_aside.png'
126
+ image 'img/blogs/formats/format_image.png', :to => 'blogs/formats/format_image.png'
127
+ image 'img/blogs/formats/format_video.png', :to => 'blogs/formats/format_video.png'
128
+ image 'img/blogs/formats/format_audio.png', :to => 'blogs/formats/format_audio.png'
129
+ image 'img/blogs/formats/format_quote.png', :to => 'blogs/formats/format_quote.png'
130
+ image 'img/blogs/formats/format_link.png', :to => 'blogs/formats/format_link.png'
131
+ image 'img/blogs/formats/format_gallery.png', :to => 'blogs/formats/format_gallery.png'
132
+ image 'img/blogs/formats@2x/format_standard@2x.png', :to => 'blogs/formats@2x/format_standard@2x.png'
133
+ image 'img/blogs/formats@2x/format_aside@2x.png', :to => 'blogs/formats@2x/format_aside@2x.png'
134
+ image 'img/blogs/formats@2x/format_image@2x.png', :to => 'blogs/formats@2x/format_image@2x.png'
135
+ image 'img/blogs/formats@2x/format_video@2x.png', :to => 'blogs/formats@2x/format_video@2x.png'
136
+ image 'img/blogs/formats@2x/format_audio@2x.png', :to => 'blogs/formats@2x/format_audio@2x.png'
137
+ image 'img/blogs/formats@2x/format_quote@2x.png', :to => 'blogs/formats@2x/format_quote@2x.png'
138
+ image 'img/blogs/formats@2x/format_link@2x.png', :to => 'blogs/formats@2x/format_link@2x.png'
139
+ image 'img/blogs/formats@2x/format_gallery@2x.png', :to => 'blogs/formats@2x/format_gallery@2x.png'
122
140
 
123
141
  font 'fonts/futurastd-book-webfont.eot', :to => 'futurastd-book-webfont.eot'
124
142
  font 'fonts/futurastd-book-webfont.svg', :to => 'futurastd-book-webfont.svg'
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.0.5
4
+ version: 1.1.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: 2014-06-18 00:00:00.000000000 Z
11
+ date: 2014-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -175,6 +175,22 @@ files:
175
175
  - templates/project/fonts/futurastd-medium-webfont.svg
176
176
  - templates/project/fonts/futurastd-medium-webfont.ttf
177
177
  - templates/project/fonts/futurastd-medium-webfont.woff
178
+ - templates/project/img/blogs/formats/format_aside.png
179
+ - templates/project/img/blogs/formats/format_audio.png
180
+ - templates/project/img/blogs/formats/format_gallery.png
181
+ - templates/project/img/blogs/formats/format_image.png
182
+ - templates/project/img/blogs/formats/format_link.png
183
+ - templates/project/img/blogs/formats/format_quote.png
184
+ - templates/project/img/blogs/formats/format_standard.png
185
+ - templates/project/img/blogs/formats/format_video.png
186
+ - templates/project/img/blogs/formats@2x/format_aside@2x.png
187
+ - templates/project/img/blogs/formats@2x/format_audio@2x.png
188
+ - templates/project/img/blogs/formats@2x/format_gallery@2x.png
189
+ - templates/project/img/blogs/formats@2x/format_image@2x.png
190
+ - templates/project/img/blogs/formats@2x/format_link@2x.png
191
+ - templates/project/img/blogs/formats@2x/format_quote@2x.png
192
+ - templates/project/img/blogs/formats@2x/format_standard@2x.png
193
+ - templates/project/img/blogs/formats@2x/format_video@2x.png
178
194
  - templates/project/img/default_avatar.png
179
195
  - templates/project/img/favicons/apple-touch-icon-114x114.png
180
196
  - templates/project/img/favicons/apple-touch-icon-120x120.png
@@ -234,6 +250,8 @@ files:
234
250
  - templates/project/img/logos_es_ES/iasd_header@2x.png
235
251
  - templates/project/img/logos_es_ES/iasd_header_symbol.png
236
252
  - templates/project/img/logos_es_ES/iasd_header_symbol@2x.png
253
+ - templates/project/img/logos_es_ES/iasd_header_symbol_small.png
254
+ - templates/project/img/logos_es_ES/iasd_header_symbol_small@2x.png
237
255
  - templates/project/img/logos_es_ES/iasd_header_vertical.png
238
256
  - templates/project/img/logos_es_ES/iasd_header_vertical@2x.png
239
257
  - templates/project/img/logos_pt_BR/iasd_404.png
@@ -246,6 +264,8 @@ files:
246
264
  - templates/project/img/logos_pt_BR/iasd_header@2x.png
247
265
  - templates/project/img/logos_pt_BR/iasd_header_symbol.png
248
266
  - templates/project/img/logos_pt_BR/iasd_header_symbol@2x.png
267
+ - templates/project/img/logos_pt_BR/iasd_header_symbol_small.png
268
+ - templates/project/img/logos_pt_BR/iasd_header_symbol_small@2x.png
249
269
  - templates/project/img/logos_pt_BR/iasd_header_vertical.png
250
270
  - templates/project/img/logos_pt_BR/iasd_header_vertical@2x.png
251
271
  - templates/project/img/plugins/loader.gif