Rename images using underscores

This commit is contained in:
decabeza
2019-03-19 17:18:21 +01:00
parent dfadfd7411
commit 71c6a6edbc
9 changed files with 11 additions and 12 deletions

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -299,7 +299,7 @@
display: block;
width: 60px;
height: 60px;
background-image: url(quote-before.svg);
background-image: url("quote_before_blue.png");
background-repeat: no-repeat;
}
@@ -309,17 +309,16 @@
display: block;
width: 60px;
height: 60px;
background-image: url(quote-after.svg);
background-image: url("quote_after_blue.png");
background-repeat: no-repeat;
}
.icon-finger::before {
content: '';
background-size: cover;
display: inline-block;
width: 50px;
height: 50px;
background-image: url(finger.svg);
background-image: url("finger.png");
background-repeat: no-repeat;
}

View File

@@ -5,9 +5,9 @@
<tbody>
<tr>
<td style="background: #0300ff; padding: 50px; padding-top:40px; text-align: left;">
<%= image_tag 'quote-before-white.png', style: 'max-width: 40px; vertical-align: top;' %>
<%= image_tag "quote_before_white.png", style: "max-width: 40px; vertical-align: top;" %>
<h1 style="color: #fff; font-size: 60px; line-height: 90px; display: inline;"><%= @proposal.title %></h1>
<%= image_tag 'quote-after-white.png', style: 'max-width: 40px; vertical-align: top;' %>
<%= image_tag "quote_after_white.png", style: "max-width: 40px; vertical-align: top;" %>
<h2 style="color: #fff; font-size: 40px; line-height: 60px"><%= t("dashboard.mailer.forward.subtitle").html_safe %></h2>
</td>
</tr>

View File

@@ -2,9 +2,9 @@
<div class="row expanded">
<div class="small-12 medium-9 dashboard-mail-preview column dashboard-mail-preview">
<div class="mail-header text-left">
<%= image_tag 'quote-before-white.png' %>
<%= image_tag "quote_before_white.png" %>
<h1 class="inline"><%= proposal.title %></h1>
<%= image_tag 'quote-after-white.png' %>
<%= image_tag "quote_after_white.png" %>
<h2><%= t("dashboard.mailer.forward.subtitle").html_safe %></h2>
</div>

View File

@@ -23,9 +23,9 @@
</div>
<div class="poster-content">
<h2><%= t("dashboard.poster.index.support") %></h2>
<%= image_tag 'quote-before-blue.png' %>
<%= image_tag "quote_before_blue.png" %>
<h3><%= proposal.title %></h3>
<%= image_tag 'quote-after-blue.png' %>
<%= image_tag "quote_after_blue.png" %>
<p class="poster-footer">
<%= t("dashboard.poster.index.footer", link: Setting["url"]).html_safe %>
</p>

View File

@@ -30,9 +30,9 @@
</div>
<div class="poster-content">
<h2 class="text-center"><strong><%= t("dashboard.poster.index.support") %></strong></h2>
<%= wicked_pdf_image_tag 'quote-before-blue.png' %>
<%= wicked_pdf_image_tag "quote_before_blue.png" %>
<h3><strong><%= proposal.title %></strong></h3>
<%= wicked_pdf_image_tag 'quote-after-blue.png' %>
<%= wicked_pdf_image_tag "quote_after_blue.png" %>
<p class="poster-footer">
<%= t("dashboard.poster.index.footer", link: Setting["url"]).html_safe %>
</p>