123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- $list-header-margin: 0px;
- $popover-width: 200px;
- $popover-border-radius: 5px;
- $button-header-size: 1.8em;
- $card-padding: 6px;
- ion-list-header {
- margin-bottom: $list-header-margin !important;
- }
- ion-buttons[start] {
- order: 2;
- }
- ion-buttons button span ion-icon, ion-item div button span ion-icon {
- padding: 0 6px !important;
- font-size: $button-header-size !important;
- }
- ion-label h2 {
- word-break: keep-all;
- white-space: normal;
- }
- ion-card ion-row ion-col button {
- text-transform: none !important;
- white-space: normal !important;
- }
- ion-card ion-row ion-col button ion-icon {
- padding: 0 $card-padding !important;
- }
- .popover-content {
- width: $popover-width !important;
- border-radius: $popover-border-radius !important;
- }
- .popover-viewport ion-list {
- margin: -1px 0 5px 10px !important;
- }
- .no-element {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .no-element > h2 {
- font-size: 15pt;
- color: #d3d3d3;
- }
- .has-header {
- top: 56px !important;
- height: calc(100% - 56px) !important;
- }
- // .action-sheet-cancel ion-icon, .action-sheet-destructive ion-icon {
- // color: #757575;
- // }
|