Vmeda.Online/src/app/app.wp.scss

50 lines
1.2 KiB
SCSS
Raw Normal View History

2018-08-31 08:26:37 +00:00
ion-app.app-root.wp {
.button-wp {
min-height: $button-wp-height;
}
2017-12-18 09:48:04 +00:00
2018-08-31 08:26:37 +00:00
// Light buttons color.
.button-wp-light {
color: color($colors, primary, base);
}
2017-12-29 17:05:52 +00:00
2018-08-31 08:26:37 +00:00
.col[align-self-stretch] .card-wp {
height: calc(100% - #{($card-wp-margin-end + $card-wp-margin-start)});
}
2017-12-28 11:55:54 +00:00
2018-08-31 08:26:37 +00:00
.bar-buttons core-context-menu .button-clear-wp {
color: $toolbar-wp-button-color;
}
2018-01-24 10:35:49 +00:00
2018-08-31 08:26:37 +00:00
.item-wp ion-spinner[item-start] + .item-inner,
.item-wp ion-spinner[item-start] + .item-input {
@include margin-horizontal(($item-wp-padding-start / 2), null);
}
2018-01-24 14:39:05 +00:00
2018-08-31 08:26:37 +00:00
@each $color-name, $color-base, $color-contrast in get-colors($colors-wp) {
.core-#{$color-name}-card {
@extend .card-wp ;
@extend .card-content-wp;
2018-08-31 08:26:37 +00:00
&[icon-start] {
@include padding(null, null, null, $card-wp-padding-left * 2 + 20);
2018-08-31 08:26:37 +00:00
ion-icon {
@include position(null, null, null, $card-wp-padding-left);
}
}
}
2018-01-24 14:39:05 +00:00
}
2018-01-31 08:12:59 +00:00
2018-08-31 08:26:37 +00:00
.core-avoid-header ion-content {
top: $navbar-wp-height;
height: calc(100% - #{($navbar-wp-height)});
}
2018-08-31 08:26:37 +00:00
// Different levels of padding.
@for $i from 0 through 15 {
.core-padding-#{$i} {
@include padding(null, null, null, 15px * $i + $item-wp-padding-start);
}
}
}