dfm_web 1.0.6 → 1.0.7

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: 0023142b5e879122f9c5a97aa57756ef08fa4d3a
4
- data.tar.gz: f0fb401bd9b6c91083973e1eed291bcc496b2439
3
+ metadata.gz: b82039669ee9942f463f8899435e11115e303f81
4
+ data.tar.gz: 95913d5db13b8f5b9e2676de07b95a42c6cb86cc
5
5
  SHA512:
6
- metadata.gz: 7a721edd56a14effdb0fdc4622e31515111bb16fe71e990c6f6a70280da8ff801d2a85a7e157091793d7018b9b77f8d30741802e56619023d29d0dd5b7d8b471
7
- data.tar.gz: 6ac6a18beb25f0d7e04fb6d9bd8fbbfbaf3473871599e25c6e9c23abf0e8bff6e33bc7963e4cc1ee1e1b1474d65db2506231f911f46d308c14eb3885596c4a19
6
+ metadata.gz: 1a83a6ed88249d72b88aa038926c3519a234ddd6704aa08bead47a29e757d4ca172f3c846c851c66305c48c28c7c17dafc641ca75b26595b57d94d7c833ce6f9
7
+ data.tar.gz: 114ab62e965242fcdc13190f8f1f07c1be99948ea89491258bb4645912fde410ed11c4d3924bdd25553cb397a9604b00725715a8238f0574065144ea646c6da0
@@ -0,0 +1,31 @@
1
+ <footer>
2
+ <div id="footer">
3
+ <div class="fixed">
4
+ <div class="left">
5
+ <%= current_user if signed_in? rescue nil %>
6
+ </div>
7
+ <div class="left">
8
+ <div><%= Duffy::Git.branch rescue nil %></div>
9
+ </div>
10
+
11
+ <div class="left">
12
+ <div class="show-for-xsmall-only">XS</div>
13
+ <div class="show-for-small-only">S</div>
14
+ <div class="show-for-medium-only">M</div>
15
+ <div class="show-for-large-only">L</div>
16
+ <div class="show-for-xlarge-only">XL</div>
17
+ </div>
18
+
19
+ <div class="left">
20
+ <div class="left show-for-xsmall-up">I</div>
21
+ <div class="left show-for-small-up">I</div>
22
+ <div class="left show-for-medium-up">I</div>
23
+ <div class="left show-for-large-up">I</div>
24
+ <div class="left show-for-xlarge-up">I</div>
25
+ </div>
26
+ </div>
27
+ <div class="right">
28
+ Copyright &copy; 2016, UW-Madison<span class="show-for-medium-up">, Department of Family Medicine<span class="show-for-large-up"> and Community Health</span></span>
29
+ </div>
30
+ </div>
31
+ </footer>
@@ -0,0 +1,15 @@
1
+ <nav>
2
+ <div id="nav">
3
+ <div class="left">
4
+ <%= link_to main_app.root_url do %>
5
+ <%= image_tag "dfm_web/uwcrest.png", size: '25x40' %>
6
+ <h1 class='hover_span'>DFM<span>CH</span> Web</h1>
7
+ <% end %>
8
+ </div>
9
+
10
+ <ul class="right">
11
+ <li><%= link_to "Example", '#' %></li>
12
+ <li><%= link_to "Example", '#' %></li>
13
+ </ul>
14
+ </div>
15
+ </nav>
@@ -1,10 +1,11 @@
1
1
  module DfmWeb
2
- VERSION = "1.0.6"
2
+ VERSION = "1.0.7"
3
3
  end
4
4
 
5
5
 
6
6
  # Version History
7
7
 
8
+ # 1.0.7 Copied simple versions of _nav and _footer from the dummy app so they won't be missing assets on new apps.
8
9
  # 1.0.6 Added "paper" class to simulate printed content.
9
10
  # 1.0.5 Form element style improvements. Added optional Mailer Template.
10
11
  # 1.0.4 Found the mystery 20px and removed it, then removed the two 20px workarounds in the nav.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dfm_web
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Duffy
@@ -97,7 +97,9 @@ files:
97
97
  - app/assets/stylesheets/dfm_web/tables.css
98
98
  - app/helpers/dfm_web_helper.rb
99
99
  - app/views/layouts/_flash.html.erb
100
+ - app/views/layouts/_footer.html.erb
100
101
  - app/views/layouts/_main.html.erb
102
+ - app/views/layouts/_nav.html.erb
101
103
  - app/views/layouts/mailer.html.erb
102
104
  - config/routes.rb
103
105
  - lib/dfm_web.rb