File tree Expand file tree Collapse file tree 6 files changed +15
-10
lines changed Expand file tree Collapse file tree 6 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 22
22
" components/loading/loading" ,
23
23
" components/menu/menu" ,
24
24
" components/modal/modal" ,
25
- " components/popover/popover" ,
26
25
" components/range/range" ,
27
26
" components/refresher/refresher" ,
28
27
" components/scroll/scroll" ,
Original file line number Diff line number Diff line change 1
1
@import " ../../globals.core" ;
2
+ @import " ./popover" ;
2
3
3
4
// iOS Popover
4
5
// --------------------------------------------------
5
6
6
7
$popover-ios-width : 200px !default ;
8
+ $popover-ios-min-width : 0 !default ;
9
+ $popover-ios-min-height : 0 !default ;
7
10
$popover-ios-max-height : 90% !default ;
8
11
9
12
$popover-ios-border-radius : 10px !default ;
@@ -16,7 +19,8 @@ $popover-ios-arrow-background: $popover-ios-background !default;
16
19
17
20
.popover-content {
18
21
width : $popover-ios-width ;
19
-
22
+ min-width : $popover-ios-min-width ;
23
+ min-height : $popover-ios-min-height ;
20
24
max-height : $popover-ios-max-height ;
21
25
22
26
border-radius : $popover-ios-border-radius ;
Original file line number Diff line number Diff line change 1
1
@import " ../../globals.core" ;
2
+ @import " ./popover" ;
2
3
3
4
// Material Design Popover
4
5
// --------------------------------------------------
5
6
6
7
$popover-md-width : 250px !default ;
8
+ $popover-md-min-width : 0 !default ;
9
+ $popover-md-min-height : 0 !default ;
7
10
$popover-md-max-height : 90% !default ;
8
11
9
12
$popover-md-border-radius : 2px !default ;
@@ -17,8 +20,8 @@ $popover-md-item-background: $popover-md-background !default;
17
20
18
21
.popover-content {
19
22
width : $popover-md-width ;
20
- min-width : 0 ;
21
- min-height : 0 ;
23
+ min-width : $popover-md-min-width ;
24
+ min-height : $popover-md-min-height ;
22
25
max-height : $popover-md-max-height ;
23
26
24
27
border-radius : $popover-md-border-radius ;
Original file line number Diff line number Diff line change @@ -34,8 +34,6 @@ ion-popover {
34
34
35
35
flex-direction : column ;
36
36
37
- min-height : 200px ;
38
-
39
37
scroll-content {
40
38
position : relative ;
41
39
}
Original file line number Diff line number Diff line change 1
1
@import " ../../globals.core" ;
2
+ @import " ./popover" ;
2
3
3
4
// Windows Popover
4
5
// --------------------------------------------------
5
6
6
7
$popover-wp-width : 200px !default ;
8
+ $popover-wp-min-width : 0 !default ;
9
+ $popover-wp-min-height : 0 !default ;
7
10
$popover-wp-max-height : 90% !default ;
8
11
9
12
$popover-wp-border : 2px solid #ccc !default ;
@@ -16,8 +19,8 @@ $popover-wp-item-background: $popover-wp-background !default;
16
19
17
20
.popover-content {
18
21
width : $popover-wp-width ;
19
- min-width : 0 ;
20
- min-height : 0 ;
22
+ min-width : $popover-wp-min-width ;
23
+ min-height : $popover-wp-min-height ;
21
24
max-height : $popover-wp-max-height ;
22
25
23
26
border : $popover-wp-border ;
Original file line number Diff line number Diff line change @@ -139,8 +139,6 @@ class PopoverRadioPage {
139
139
<ion-list-header>Ionic</ion-list-header>
140
140
<button ion-item (click)="close()">Learn Ionic</button>
141
141
<button ion-item (click)="close()">Documentation</button>
142
- <button ion-item (click)="close()">Showcase</button>
143
- <button ion-item (click)="close()">GitHub Repo</button>
144
142
</ion-list>
145
143
`
146
144
} )
You can’t perform that action at this time.
0 commit comments