Upgrade foundation to 6.5.3
This commit is contained in:
@@ -42,7 +42,6 @@
|
||||
// 37. Top Bar
|
||||
|
||||
@import "~foundation-sites/scss/util/util";
|
||||
|
||||
// 1. Global
|
||||
// ---------
|
||||
|
||||
@@ -567,7 +566,7 @@ $switch-paddle-transition: all 0.15s ease-out;
|
||||
|
||||
$table-background: transparent;
|
||||
$table-color-scale: 5%;
|
||||
$table-border: 1px solid smart-scale($color-heading, $table-color-scale);
|
||||
$table-border: 1px solid transparent;
|
||||
$table-padding: rem-calc(8 10 10);
|
||||
$table-hover-scale: 2%;
|
||||
$table-row-hover: darken($table-background, $table-hover-scale);
|
||||
@@ -647,3 +646,10 @@ $topbar-submenu-background: $topbar-background;
|
||||
$topbar-title-spacing: 0.5rem 1rem 0.5rem 0;
|
||||
$topbar-input-width: 200px;
|
||||
$topbar-unstack-breakpoint: medium;
|
||||
|
||||
|
||||
// Internal variable that contains the flex justifying options
|
||||
$-zf-flex-justify: -zf-flex-justify($global-text-direction);
|
||||
|
||||
$menu-items-padding: $space-one;
|
||||
$xy-grid: false;
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
}
|
||||
|
||||
@mixin flex-shrink() {
|
||||
flex: flex-grid-column(shrink);
|
||||
flex: 0 0 auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
@import 'variables';
|
||||
|
||||
@import '~bourbon/core/bourbon';
|
||||
@import '~spinkit/scss/spinners/7-three-bounce';
|
||||
@import '~ionicons/scss/ionicons';
|
||||
|
||||
@import 'foundation-settings';
|
||||
@import 'mixins';
|
||||
@import 'foundation-settings';
|
||||
@import 'helper-classes';
|
||||
@import 'foundation-sites/scss/foundation';
|
||||
@import '~bourbon/core/bourbon';
|
||||
|
||||
@import '~foundation-sites/assets/foundation-flex';
|
||||
@include foundation-everything($flex: true);
|
||||
|
||||
@import 'woot';
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
}
|
||||
|
||||
.account-row {
|
||||
@include flex-grid-column(3, $space-medium);
|
||||
@include padding($space-normal);
|
||||
@include flex;
|
||||
flex-direction: column;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
.side-menu {
|
||||
i {
|
||||
min-width: 2rem;
|
||||
min-width: $space-two;
|
||||
margin-right: $space-smaller;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -43,8 +44,9 @@
|
||||
@include elegant-card;
|
||||
@include border-light;
|
||||
left: 18%;
|
||||
top: -160%;
|
||||
top: -110%;
|
||||
visibility: visible;
|
||||
display: block;
|
||||
width: 80%;
|
||||
z-index: 999;
|
||||
|
||||
|
||||
@@ -21,7 +21,19 @@
|
||||
background: lighten($alert-color, 30%);
|
||||
|
||||
.button {
|
||||
@include button-style($alert-color, darken($alert-color, 7%), $color-white);
|
||||
// Default and disabled states
|
||||
&,
|
||||
&.disabled, &[disabled],
|
||||
&.disabled:hover, &[disabled]:hover,
|
||||
&.disabled:focus, &[disabled]:focus {
|
||||
background-color: $alert-color;
|
||||
color: $color-white;
|
||||
}
|
||||
|
||||
&:hover, &:focus {
|
||||
background-color: darken($alert-color, 7%);
|
||||
color: $color-white;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user