Skip to content
Snippets Groups Projects
Unverified Commit 1b7a544a authored by weaver299's avatar weaver299 Committed by GitHub
Browse files

Merge pull request #60 from ASCWebServices/canini

asc_bootstrap - sass updates, contactinfo address fix, allout boxes a…
parents b4c969b6 a26b24f2
No related branches found
No related tags found
No related merge requests found
...@@ -260,7 +260,7 @@ ...@@ -260,7 +260,7 @@
@media (max-width: 768px) { @media (max-width: 768px) {
display: block; display: block;
width: 100%; width: 100%;
margin: 0; margin: 0 0 8px 0;
font-weight: 700; font-weight: 700;
} }
} }
...@@ -298,7 +298,7 @@ ...@@ -298,7 +298,7 @@
@media (max-width: 768px) { @media (max-width: 768px) {
display: block; display: block;
width: 100%; width: 100%;
margin: 0; margin: 0 0 8px 0;
font-weight: 700; font-weight: 700;
} }
} }
...@@ -336,7 +336,7 @@ ...@@ -336,7 +336,7 @@
@media (max-width: 768px) { @media (max-width: 768px) {
display: block; display: block;
width: 100%; width: 100%;
margin: 0; margin: 0 0 8px 0;
font-weight: 700; font-weight: 700;
} }
} }
......
...@@ -10918,7 +10918,7 @@ article .field--name-body { ...@@ -10918,7 +10918,7 @@ article .field--name-body {
.slide-txt-container .slide-txt .slide-txt-wrapper .btn-links-19 .btn-wrapper { .slide-txt-container .slide-txt .slide-txt-wrapper .btn-links-19 .btn-wrapper {
display: block; display: block;
width: 100%; width: 100%;
margin: 0; margin: 0 0 8px 0;
font-weight: 700; font-weight: 700;
} }
} }
...@@ -10958,7 +10958,7 @@ article .field--name-body { ...@@ -10958,7 +10958,7 @@ article .field--name-body {
.slide-txt-container .slide-txt .slide-txt-wrapper .btn-links-18 .btn-wrapper { .slide-txt-container .slide-txt .slide-txt-wrapper .btn-links-18 .btn-wrapper {
display: block; display: block;
width: 100%; width: 100%;
margin: 0; margin: 0 0 8px 0;
font-weight: 700; font-weight: 700;
} }
} }
...@@ -10998,7 +10998,7 @@ article .field--name-body { ...@@ -10998,7 +10998,7 @@ article .field--name-body {
.slide-txt-container .slide-txt .slide-txt-wrapper .btn-links-17 .btn-wrapper { .slide-txt-container .slide-txt .slide-txt-wrapper .btn-links-17 .btn-wrapper {
display: block; display: block;
width: 100%; width: 100%;
margin: 0; margin: 0 0 8px 0;
font-weight: 700; font-weight: 700;
} }
} }
......
...@@ -48,11 +48,11 @@ ...@@ -48,11 +48,11 @@
<div class="footer-address"> <div class="footer-address">
<h3>Contact Us</h3> <h3>Contact Us</h3>
<p> <p>
{% if content.field_address1.0 %} {% if content.field_address_line1.0 %}
{{ content.field_address_line1.0 }}<br/> {{ content.field_address_line1.0 }}<br/>
{% endif %} {% endif %}
{% if content.field_address2.0 %} {% if content.field_address_line2.0 %}
{{ content.field_address_line2.0 }}<br/> {{ content.field_address_line2.0 }}<br/>
{% endif %} {% endif %}
......
...@@ -39,6 +39,9 @@ ...@@ -39,6 +39,9 @@
{# Setting up variable that determines the background color for section #} {# Setting up variable that determines the background color for section #}
{% set bgcolor = content.field_background_color['#items'].getString() %} {% set bgcolor = content.field_background_color['#items'].getString() %}
{% if bgcolor == ''%}
{% set bgcolor = 'transparent-bg' %}
{% endif %}
{# Prints div with classes, and content without Width and Background. #} {# Prints div with classes, and content without Width and Background. #}
<div{{ attributes.addClass(classes) }}> <div{{ attributes.addClass(classes) }}>
......
...@@ -40,6 +40,9 @@ ...@@ -40,6 +40,9 @@
{# Setting up variable that determines the background color for section #} {# Setting up variable that determines the background color for section #}
{% set bgcolor = content.field_background_color['#items'].getString() %} {% set bgcolor = content.field_background_color['#items'].getString() %}
{% if bgcolor == ''%}
{% set bgcolor = 'transparent-bg' %}
{% endif %}
{# Prints div with classes, and content without Width and Background. #} {# Prints div with classes, and content without Width and Background. #}
<div{{ attributes.addClass(classes) }}> <div{{ attributes.addClass(classes) }}>
......
...@@ -39,6 +39,9 @@ ...@@ -39,6 +39,9 @@
{# Setting up variable that determines the background color for section #} {# Setting up variable that determines the background color for section #}
{% set bgcolor = content.field_background_color['#items'].getString() %} {% set bgcolor = content.field_background_color['#items'].getString() %}
{% if bgcolor == ''%}
{% set bgcolor = 'transparent-bg' %}
{% endif %}
{# Prints div with classes, and content without Width and Background. #} {# Prints div with classes, and content without Width and Background. #}
<div{{ attributes.addClass(classes) }}> <div{{ attributes.addClass(classes) }}>
......
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
</section> </section>
{% if (page.sidemenu or page.sidebar_second) %} {% if page.sidebar_menu or page.sidebar_second %}
<aside class="col-sm-3" role="complementary"> <aside class="col-sm-3" role="complementary">
{# Sidebar Second #} {# Sidebar Second #}
{% if page.sidebar_menu %} {% if page.sidebar_menu %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment