mail/src/sass/base/_scaffolding.scss

53 lines
980 B
SCSS
Raw Normal View History

2014-09-23 09:41:37 -04:00
@include scut-reset-pointer;
@include scut-reset-semanticize;
@include scut-reset-button;
2013-09-16 13:46:04 -04:00
*,
*:before,
*:after {
box-sizing: border-box;
// remove flickering on item touch selection in ios
-webkit-tap-highlight-color: transparent !important;
2013-09-16 13:46:04 -04:00
}
2014-09-23 09:41:37 -04:00
@include scrollbar();
2013-09-16 13:46:04 -04:00
2014-09-23 09:41:37 -04:00
// Body reset
2013-09-16 13:46:04 -04:00
html {
font-size: 62.5%;
height: 100%;
}
body {
font-family: $font-family-base;
font-size: $font-size-base;
line-height: $line-height-base;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100%;
}
// Reset fonts for relevant elements
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
2013-09-18 16:05:51 -04:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
// disable box shadow on firefox
background-image: none;
2013-09-16 13:46:04 -04:00
}
2014-07-31 15:39:43 -04:00
fieldset {
2014-09-23 09:41:37 -04:00
border: 1px solid $color-grey-lighter;
2014-07-31 15:39:43 -04:00
}
2014-09-23 09:41:37 -04:00
// ngView
2013-09-17 13:11:30 -04:00
.main-app-view {
height: 100%;
2014-09-23 09:41:37 -04:00
overflow: hidden;
}