MOBILE-2795 ux: Fix some styles

main
Pau Ferrer Ocaña 2018-12-18 12:08:03 +01:00
parent 4c4995f96c
commit 0683196ec3
3 changed files with 9 additions and 3 deletions

View File

@ -17,7 +17,7 @@
<core-loading [hideUntil]="loaded" class="core-loading-center">
<div padding [hidden]="showFilter || !showSelectorFilter" class="safe-padding-horizontal">
<!-- "Time" selector. -->
<ion-select text-start [title]="'core.show' | translate" [(ngModel)]="selectedFilter" ion-col (ngModelChange)="selectedChanged()" interface="popover" class="core-button-select">
<ion-select text-start [title]="'core.show' | translate" [(ngModel)]="selectedFilter" (ngModelChange)="selectedChanged()" interface="popover" class="core-button-select">
<ion-option value="all">{{ 'addon.block_myoverview.all' | translate }}</ion-option>
<ion-option value="inprogress">{{ 'addon.block_myoverview.inprogress' | translate }}</ion-option>
<ion-option value="future">{{ 'addon.block_myoverview.future' | translate }}</ion-option>

View File

@ -384,7 +384,6 @@ ion-app.app-root {
&.select-wp,
&.button-wp {
background: $card-wp-background-color;
box-shadow: $card-wp-box-shadow;
}
.select-text {

View File

@ -3,12 +3,19 @@ ion-app.app-root core-search-box {
margin: 0;
padding: ($content-padding / 2) $content-padding;
}
.item.item-input.item-block .item-inner,
.item.item-input.item-block .item-inner ion-input {
border-bottom: 0;
border-bottom: 0 !important;
box-shadow: none;
}
.item-inner {
padding-right: 0 !important;
padding-left: 0 !important;
}
.item-wp .text-input {
border: 0;
margin: 0;
}
}