Skip to content
Snippets Groups Projects
Commit d6dc401f authored by Brian Canini's avatar Brian Canini
Browse files

asc_bootstrap - user profile page updates, style updates for menu title and google map

parent ef20ef02
No related branches found
No related tags found
No related merge requests found
......@@ -30,3 +30,12 @@
article .field--name-body {
margin: 20px 0;
}
//
// Google Maps Field
// --------------------------------------------------
.field--name-field-google-map {
padding: 15px 0;
}
......@@ -91,6 +91,19 @@
}
}
h2.active-link {
background-color: transparent;
border-left: none;
padding-left: 0;
}
h2 {
a {
color: $black-base;
}
}
@media (max-width: 768px) {
display: none;
}
......
......@@ -10270,6 +10270,11 @@ article .field--name-body {
margin: 20px 0;
}
/* line 39, ../assets/sass/components/_fields.scss */
.field--name-field-google-map {
padding: 15px 0;
}
/* line 8, ../assets/sass/components/_filters.scss */
.bef-exposed-form .form--inline > .form-item {
float: none;
......@@ -11757,6 +11762,16 @@ body {
#block-mainnavigation-2 .link-wrapper:hover {
background-color: #ffffff;
}
/* line 94, ../assets/sass/components/_sidebar-menu.scss */
#block-mainnavigation-2 h2.active-link {
background-color: transparent;
border-left: none;
padding-left: 0;
}
/* line 102, ../assets/sass/components/_sidebar-menu.scss */
#block-mainnavigation-2 h2 a {
color: #000000;
}
@media (max-width: 768px) {
/* line 5, ../assets/sass/components/_sidebar-menu.scss */
#block-mainnavigation-2 {
......
......@@ -61,16 +61,21 @@
</p>
{% endif %}
{% if content.field_address.0 != '' %}
{% if (content.field_address.0 != '') or (content.field_room_building.0 != '') %}
<p>
{{ content.field_address.0 }}
{% if content.field_room_building.0 != '' %}
{{ content.field_room_building.0 }}<br/>
{% endif %}
{% if content.field_address.0 != '' %}
{{ content.field_address.0 }}
{% endif %}
</p>
{% endif %}
</div>
<div class="col-xs-12 col-sm-4 bio-info">
{% if content.field_google_map_location.0 != '' %}
{{ content.field_google_map_location }}
{% if content.field_google_map.0 != '' %}
{{ content.field_google_map }}
{% endif %}
</div>
</div>
......
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