This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//I find the default header size reductions in the setting.scss leave h2 and h4 tags a little off for my tastes. | |
//I make these changes in lines 219 and 221 | |
// We use these to control header size reduction on small screens | |
// $h1-font-reduction: rem-calc(10) !default; | |
$h2-font-reduction: rem-calc(6) !default; | |
// $h3-font-reduction: rem-calc(5) !default; | |
$h4-font-reduction: rem-calc(4) !default; | |
// $h5-font-reduction: 0 !default; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET FOREIGN_KEY_CHECKS = 0; | |
TRUNCATE table_name; | |
SET FOREIGN_KEY_CHECKS = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ui-datepicker { | |
background-color: #fff; | |
border: 1px solid #66AFE9; | |
border-radius: 4px; | |
box-shadow: 0 0 8px rgba(102,175,233,.6); | |
display: none; | |
margin-top: 4px; | |
padding: 10px; | |
width: 240px; | |
} |