bootstrap_bux 0.2.6 → 0.2.8

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
  SHA256:
3
- metadata.gz: 308c7e8f9677c604042a4a2694b14215763b1147b21c5eaa653bc4de48b6e378
4
- data.tar.gz: 7db6a765a808478037d23a330a8cf6f7cf091b1aa6ae6f5d7ba3636c9be3382a
3
+ metadata.gz: b079d633c977538c7eec23082b808ffb70bad2e4967a4974e529680c3621c7bd
4
+ data.tar.gz: caa7c04f8da6022094f2b0e7436c9b0222dc31498cab963798d1c6760c951bde
5
5
  SHA512:
6
- metadata.gz: 6188481b559501c280e5935d6464913315e9176a3b127f1bec6483fdaf3e66d64d0c4dd9b083200c6c2eee9f9a60f5b70c468c1537d337efc50d34c15afdedde
7
- data.tar.gz: 3be46b092be1848d156f90955533798bdec01272a943696d08132164abcbbd028f244b2ba7262cec41386854d4c2ba27ada7ebaf135baf214b18b9f22d9cc712
6
+ metadata.gz: 77fc93ab8c457ecd7102530dd0d51158ac79cb34819a541535f4f49dbe0ab6b29775832d363a10bcb6f43d4efc9b3f7b1abd6bd8e2964e79a34fd7344e69b8a1
7
+ data.tar.gz: ee0afb010dcf0933c41d0d5cf5bfc451b352e7b7c060499197eb9d8183b6214857b73c6d5e356498b6e483c4286899bb41a9690a8e452af3fa6bb0e60368c419
@@ -726,6 +726,13 @@ a.bux-button {
726
726
  margin-bottom: 1rem;
727
727
  }
728
728
 
729
+ .bux-footer--dark .bux-footer__logo .st0{fill:#FFFFFF}
730
+ .bux-footer--dark .bux-footer__logo .st1{fill:#BA0C2F}
731
+ .bux-footer--light .bux-footer__logo .st0{fill:#666666}
732
+ .bux-footer--light .bux-footer__logo .st1{fill:#BA0C2F}
733
+ .bux-footer--white .bux-footer__logo .st0{fill:#666666}
734
+ .bux-footer--white .bux-footer__logo .st1{fill:#BA0C2F}
735
+
729
736
  .bux-footer .bux-footer__contact p {
730
737
  /* font-family: BuckeyeSans, HelveticaNeue, Helvetica, Arial, sans-serif; */
731
738
  font-size: .875rem;
@@ -1,11 +1,7 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
2
  <!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
3
  <svg role="img" aria-label="The Ohio State University" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 576 90" style="enable-background:new 0 0 576 90;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:<%= fill1 %>}
7
- .st1{fill:<%= fill2 %>}
8
- </style>
4
+ viewBox="0 0 576 90" xml:space="preserve">
9
5
  <g>
10
6
  <polygon class="st0" points="83.9,64.5 83.9,65.9 576,65.9 576,64.5 "/>
11
7
  <path class="st1" d="M17.1,26.8l5.5-5.5h17.8l5.5,5.5v36.6l-5.5,5.5H22.6l-5.5-5.5V26.8L17.1,26.8z M59.8,20.8L46.2,7.3H16.8
@@ -3,7 +3,7 @@
3
3
  <div class="col">
4
4
  <div class="bux-footer__logo">
5
5
  <a href="http://osu.edu" target="_blank">
6
- <%= render 'bootstrap_bux/footer_logo', fill1: fill1, fill2: fill2 %>
6
+ <%= render 'bootstrap_bux/footer_logo'%>
7
7
  </a>
8
8
  </div>
9
9
  <div class="bux-footer__contact bux-footer__contact--address">
@@ -102,9 +102,9 @@
102
102
  <% unless BootstrapBux.configuration.signin_link.blank? || BootstrapBux.configuration.signout_link.blank? %>
103
103
  <p class="bux_footer__link">
104
104
  <% if signed_in? %>
105
- <%= button_to('Log Out', BootstrapBux.configuration.signout_link, method: :delete, class: 'bux-link btn btn-link') %>
105
+ <%= link_to('Log Out', BootstrapBux.configuration.signout_link, class: 'bux-link btn btn-link', 'data-method'=> :delete) %>
106
106
  <% else %>
107
- <%= button_to('Log In', BootstrapBux.configuration.signin_link, method: :post, class: 'bux-link btn btn-link') %>
107
+ <%= button_to('Log In', BootstrapBux.configuration.signin_link, method: :post, class: 'bux-link btn btn-link', data: { turbo: false }) %>
108
108
  <% end %>
109
109
  </p>
110
110
  <% end %>
@@ -1,3 +1,3 @@
1
1
  <footer class="bux-footer bux-footer--dark">
2
- <%= render('bootstrap_bux/osu_footer', fill1: '#FFFFFF;', fill2: '#BA0C2F;') %>
2
+ <%= render('bootstrap_bux/osu_footer') %>
3
3
  </footer>
@@ -1,3 +1,3 @@
1
1
  <footer class="bux-footer bux-footer--light">
2
- <%= render('bootstrap_bux/osu_footer', fill1: '#666666;', fill2: '#BA0C2F;') %>
2
+ <%= render('bootstrap_bux/osu_footer') %>
3
3
  </footer>
@@ -1,3 +1,3 @@
1
1
  <footer class="bux-footer bux-footer--white">
2
- <%= render('bootstrap_bux/osu_footer', fill1: '#666666;', fill2: '#BA0C2F;') %>
2
+ <%= render('bootstrap_bux/osu_footer') %>
3
3
  </footer>
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BootstrapBux
4
- VERSION = "0.2.6"
4
+ VERSION = "0.2.8"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap_bux
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alison Furlong
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-25 00:00:00.000000000 Z
11
+ date: 2024-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails