iasd-bootstrap-sass 1.0.2 → 1.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0c4bf870d9bfd1688bc2504aca6a1a4537fabfb3
4
- data.tar.gz: 0ba886a3effb1bdbdda05d0b82826fd575baa01b
3
+ metadata.gz: c3ed597061c9a7bcf1f8965134b49f9fb8d61ff5
4
+ data.tar.gz: a08d7a6f78399f678f8ee7d5a38060ebce55b8e9
5
5
  SHA512:
6
- metadata.gz: ee13db18a85c8dbe7c642ef2e0d512c9d131f2178c962fd3c1d254de6f38826dd95a17eaf724b424c50d2037ed267645b935914409876dbcf27fdf824ddcd1ac
7
- data.tar.gz: aac141c415078723402f10d03d0dfbf98b89c4f4eba5c6d29c7c5df8d4456b21af5c19f0503778b91f9cfbd87f18d8fadccc7c85207373567d6407f45b8bd45a
6
+ metadata.gz: 0e1e2b1c1a9368bb2e9dffe94fd6958fa8689e659b505fbf35cdaeca31a591cfc8420df6945e64c3f69329086b6776f5292c1a231722b5973c96396c4b4f4b7e
7
+ data.tar.gz: 0633fba5de13c982d24b720d2260d356a72ead0b0502e6687c537bfa8bcc6cd7e95fb7bf8a53ff6228f6d9c36c02198191da2a47864a175ac26ca492bb16f66f
data/README.md CHANGED
@@ -1,2 +1,59 @@
1
- iasd-bootstrap
1
+ IASD-Bootstrap
2
2
  ==============
3
+
4
+ Para utilizar o IASD Boostrap, leia a documentação disponibilizada em [http://styleguide.adventistas.org](http://styleguide.adventistas.org)
5
+
6
+ Como gerar a documentação para publicação
7
+ -----------------------------------------
8
+
9
+ No diretório raiz do projeto
10
+
11
+ :::shell
12
+ $ npm install
13
+ $ grunt docs
14
+ $ bundle install
15
+ $ bundle exec jekyll build
16
+
17
+ Após estes comandos um diretório chamado __gh_pages será criado.
18
+ Todo o conteúdo desse diretório deve ser publicado.
19
+
20
+ Como publicar a gema
21
+ --------------------
22
+
23
+ Apenas usuário com permissões específicas conseguirão publicar a gema.
24
+
25
+ No diretório raiz do projeto
26
+
27
+ :::shell
28
+ # 1. Gere a Gema
29
+ $ npm install
30
+ $ grunt dist-gem
31
+ $ gem build iasd-bootstrap-sass.gemspec
32
+
33
+ # 2. Instale a gema e faça testes da gema em um diretório vazio
34
+ $ gem install iasd-bootstrap-sass-<version>.gem
35
+ $ mkdir /tmp/test
36
+ $ cd /tmp/test
37
+ $ compass config
38
+ $ echo "require 'iasd-bootstrap-sass'" >> config/compass.rb
39
+ $ compass install iasd-bootstap
40
+ $ cd -
41
+
42
+ # 3. Publique a gem
43
+ $ gem push iasd-bootstrap-sass-<version>.gem
44
+
45
+ # 4. Teste a gema publicada. Remova a gema gerada e instale a publicada
46
+ $ gem uninstall iasd-bootstrap-sass -v <version>
47
+ $ gem install iasd-bootstrap-sass -v <version>
48
+
49
+ Como gerar a versão compilada para distribuição
50
+ -----------------------------------------------
51
+
52
+ No diretório raiz do projeto
53
+
54
+ :::shell
55
+ $ npm install
56
+ $ grunt dist-zip
57
+
58
+ Isto deve compilar os estilos e gerar um arquivo .zip pronto para distribuição
59
+
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module IASD
3
- VERSION = "1.0.2"
3
+ VERSION = "1.0.3"
4
4
  end
5
5
  end
@@ -1,6 +1,14 @@
1
1
  @import "global_nav/map/*.png";
2
2
  @include all-map-sprites;
3
3
 
4
+ .es_ES {
5
+ .iasd-global_navbar{
6
+ background:{
7
+ image: image-url($theme-es-header-background-img);
8
+ }
9
+ }
10
+ }
11
+
4
12
  .iasd-global_navbar{
5
13
  background:{
6
14
  color: $theme-main-color;
@@ -1,3 +1,9 @@
1
+ .es_ES > header {
2
+ background: {
3
+ image: image-url($theme-es-header-background-img);
4
+ }
5
+ }
6
+
1
7
  body > header{
2
8
  background: {
3
9
  color: $theme-main-color;
@@ -66,6 +66,7 @@ $theme-alt-color: #145351 !default;
66
66
  $theme-main-nav-base-color: $theme-alt-color !default;
67
67
  $theme-footer-base-color: $theme-alt-color !default;
68
68
  $theme-header-background-img: 'headers/institutional.png' !default;
69
+ $theme-es-header-background-img: $theme-header-background-img !default;
69
70
  $theme-logo: 'logos_pt_BR/iasd_header_symbol.png' !default;
70
71
  $theme-logo-retina: 'logos_pt_BR/iasd_header_symbol@2x.png' !default;
71
72
 
@@ -1822,7 +1822,7 @@ aside {
1822
1822
  .iasd-widget-social_media {
1823
1823
  .widget-box{
1824
1824
  margin: 35px 0 0;
1825
- max-height: 220px;
1825
+ min-height: 220px;
1826
1826
  overflow: hidden;
1827
1827
  .fb-like-box, .fb-like-box span, .fb-like-box span iframe[style] {
1828
1828
  width: 100% !important;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * IASD Bootstrap v1.0.1 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.0.3 (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.1 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.0.3 (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.1 (http://styleguide.adventistas.org)
2
+ * IASD Bootstrap v1.0.3 (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
  */
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.2
4
+ version: 1.0.3
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-04-30 00:00:00.000000000 Z
11
+ date: 2014-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,20 +80,6 @@ dependencies:
80
80
  - - '='
81
81
  - !ruby/object:Gem::Version
82
82
  version: 1.4.3
83
- - !ruby/object:Gem::Dependency
84
- name: jekyll-compass
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - '='
88
- - !ruby/object:Gem::Version
89
- version: 1.0.4
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - '='
95
- - !ruby/object:Gem::Version
96
- version: 1.0.4
97
83
  - !ruby/object:Gem::Dependency
98
84
  name: sass
99
85
  requirement: !ruby/object:Gem::Requirement