Skip to content

Commit 2ba863f

Browse files
committed
range fixes for safari 6.0
1 parent b353e18 commit 2ba863f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

dist/css/ionic.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2571,6 +2571,7 @@ input[type="range"] {
25712571
-moz-flex: 0 1 24px;
25722572
-ms-flex: 0 1 24px;
25732573
flex: 0 1 24px;
2574+
display: block;
25742575
font-size: 24px;
25752576
min-width: 24px;
25762577
text-align: center; }
@@ -2582,6 +2583,7 @@ input[type="range"] {
25822583
-moz-flex: 0 1 272px;
25832584
-ms-flex: 0 1 272px;
25842585
flex: 0 1 272px;
2586+
display: block;
25852587
margin-left: 10px;
25862588
margin-right: 10px;
25872589
width: 100%;

scss/_range.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,15 @@ input[type="range"] {
7373

7474
.range .icon {
7575
@include flex(0, 1, $range-icon-size);
76+
display: block;
7677
font-size: $range-icon-size;
7778
min-width: $range-icon-size;
7879
text-align: center;
7980
}
8081

8182
.range input {
8283
@include flex(0, 1, $range-max-width - ($range-icon-size * 2));
84+
display: block;
8385
margin-left: 10px;
8486
margin-right: 10px;
8587
width: 100%;

0 commit comments

Comments
 (0)