Skip to content

Commit

Permalink
Progressive fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinawilson committed Sep 28, 2017
1 parent b07ae1d commit 36ebf8d
Show file tree
Hide file tree
Showing 26 changed files with 3,485 additions and 452 deletions.
17 changes: 17 additions & 0 deletions .alm/sessionsV2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"sessions": [
{
"id": "0597137b-bb38-4939-b8d3-e4daaf6891d0",
"tabLayout": {
"type": "stack",
"width": 100,
"height": 100,
"tabs": [],
"subItems": [],
"activeItemIndex": 0
},
"lastUsed": 1506542806243,
"selectedTabId": null
}
]
}
8 changes: 8 additions & 0 deletions Unused code.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php if ( ! get_theme_mod( 'wpt_mobile_menu_layout' ) || get_theme_mod( 'wpt_mobile_menu_layout' ) === 'topbar' ) : ?>
<?php get_template_part( 'template-parts/mobile-top-bar' ); ?>
<?php endif; ?>

<!-- Before title-bar-left -->
<div class="title-bar-right">
<button class="menu-icon" type="button" data-toggle="<?php foundationpress_mobile_menu_id(); ?>"></button>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,19 @@ $accordionmenu-arrow-size: 6px !default;
top: 50%;
margin-top: -1 * ($accordionmenu-arrow-size / 2);
#{$global-right}: 1rem;
transform: rotate(-90deg);
}

&:hover {
&::after {
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
}
}

.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
transform: rotate(180deg);
transform: rotate(0deg);
transform-origin: 50% 50%;
}
}
Expand Down
17 changes: 17 additions & 0 deletions assets/scss/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,25 @@ input:-moz-placeholder {
margin-right: 25px;
}

.home section.home__about {
padding-top: 2.0em;
padding-bottom: 2.0em;

p {
text-align: left;
}
}



@media screen and (max-width: 39.9375em) {
.home__split-column {
padding: 35px;
}

nav.position-top.is-open ~ .off-canvas-content {
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
}
3 changes: 2 additions & 1 deletion assets/scss/global/_settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ $white-gray: #e4e4e4;
$light-gray: #737373;
$medium-gray: #4b4a4a;
$dark-gray: #6A6A6A;
$light-green: #F1F5EB; //light-green
$black: #0a0a09;
$white: #fefefe;
$body-background: $white;
Expand Down Expand Up @@ -595,7 +596,7 @@ $titlebar-background: $light-gray;
$titlebar-color: $body-font-color;
$titlebar-padding: 0.5rem;
$titlebar-text-font-weight: bold;
$titlebar-icon-color: $body-font-color;
$titlebar-icon-color: $white;
$titlebar-icon-color-hover: $black;
$titlebar-icon-spacing: 0.25rem;

Expand Down
Loading

0 comments on commit 36ebf8d

Please sign in to comment.