Update vendor files

- Drop IE8 polyfill scripts
This commit is contained in:
Michael Rose
2016-03-09 21:23:27 -05:00
parent 611be93d83
commit 2b494bb9d8
14 changed files with 59 additions and 118 deletions

View File

@@ -244,6 +244,12 @@ $button-size: 1.5rem;
@include grid(12,5);
}
}
figcaption {
padding-top: 10px;
@include font(14);
line-height: 1.3;
color: lighten($text-color, 10);
}
}
/* Archive listing specific styling */

View File

@@ -51,17 +51,6 @@ a {
}
}
/*
Figure captions
========================================================================== */
figcaption {
padding-top: 10px;
@include font(14);
line-height: 1.3;
color: lighten($text-color, 10);
}
/*
Feature image captions
========================================================================== */

View File

@@ -292,7 +292,7 @@ button {
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace;
font-family: $base-font;
&:hover,
&:focus {
@@ -500,6 +500,10 @@ button {
figure {
margin: 0;
}
figcaption {
margin-top: 0;
margin-bottom: 0; // reset for bottom spacing
}
}
.mfp-bottom-bar {
margin-top: -$mfp-image-padding-bottom + 4;

View File

@@ -3,7 +3,7 @@
////////////////////////
// overlay
$mfp-overlay-color: $black; // Color of overlay screen
$mfp-overlay-color: #000; // Color of overlay screen
$mfp-overlay-opacity: 0.8; // Opacity of overlay screen
$mfp-shadow: 0 0 8px rgba(0, 0, 0, 0.6); // Shadow on image or iframe
@@ -16,11 +16,11 @@ $mfp-z-index-base: 1040; // Base z-inde
// controls
$mfp-include-arrows: true; // Include styles for nav arrows
$mfp-controls-opacity: 1; // Opacity of controls
$mfp-controls-color: $white; // Color of controls
$mfp-controls-border-color: $white; // Border color of controls
$mfp-inner-close-icon-color: $white; // Color of close button when inside
$mfp-controls-text-color: #CCC; // Color of preloader and "1 of X" indicator
$mfp-controls-text-color-hover: $white; // Hover color of preloader and "1 of X" indicator
$mfp-controls-color: #fff; // Color of controls
$mfp-controls-border-color: #fff; // Border color of controls
$mfp-inner-close-icon-color: #fff; // Color of close button when inside
$mfp-controls-text-color: #ccc; // Color of preloader and "1 of X" indicator
$mfp-controls-text-color-hover: #fff; // Hover color of preloader and "1 of X" indicator
$mfp-IE7support: true; // Very basic IE7 support
// Iframe-type options
@@ -38,9 +38,9 @@ $mfp-image-padding-bottom: 40px; // Image paddi
$mfp-include-mobile-layout-for-image: true; // Removes paddings from top and bottom
// Image caption options
$mfp-caption-title-color: #F3F3F3; // Caption title color
$mfp-caption-subtitle-color: #BDBDBD; // Caption subtitle color
.mfp-counter { font-family: $alt-font; } // Caption font family
$mfp-caption-title-color: #f3f3f3; // Caption title color
$mfp-caption-subtitle-color: #bdbdbd; // Caption subtitle color
.mfp-counter { font-family: $base-font; } // Caption font family
// A11y
$mfp-use-visuallyhidden: false;