mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
change button height to 42px, fixes #491
This commit is contained in:
@@ -2,7 +2,9 @@
|
||||
## 0.9.22-alpha (pre-release)
|
||||
- Tap polyfill overhaul to remove 300ms delay when firing a click
|
||||
- Android click firing twice fixes
|
||||
- Fixes with the tap polyfill for directives using ng-click
|
||||
- Upgrade to Angular v1.2.10
|
||||
- Reduce default button height
|
||||
|
||||
|
||||
## 0.9.21 "Alpha Maine Coon" (2014-01-24)
|
||||
|
||||
8
dist/css/ionic.css
vendored
8
dist/css/ionic.css
vendored
@@ -5143,7 +5143,7 @@ input[type="range"] {
|
||||
margin: 0;
|
||||
padding: 1px 12px 0 12px;
|
||||
min-width: 52px;
|
||||
min-height: 52px;
|
||||
min-height: 47px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-radius: 2px;
|
||||
@@ -5151,7 +5151,7 @@ input[type="range"] {
|
||||
text-align: center;
|
||||
text-overflow: ellipsis;
|
||||
font-size: 16px;
|
||||
line-height: 46px;
|
||||
line-height: 42px;
|
||||
cursor: pointer; }
|
||||
.button:hover {
|
||||
color: #444444;
|
||||
@@ -5165,7 +5165,7 @@ input[type="range"] {
|
||||
padding: 0 0 1px 0;
|
||||
vertical-align: inherit;
|
||||
font-size: 24px;
|
||||
line-height: 46px; }
|
||||
line-height: 41px; }
|
||||
.button.icon-left:before {
|
||||
padding-right: .2em;
|
||||
padding-left: 0; }
|
||||
@@ -5462,7 +5462,7 @@ input[type="range"] {
|
||||
-moz-transition: opacity 0.1s;
|
||||
transition: opacity 0.1s;
|
||||
padding: 0 6px;
|
||||
max-height: 47px;
|
||||
max-height: 42px;
|
||||
border-color: transparent;
|
||||
background: none;
|
||||
box-shadow: none; }
|
||||
|
||||
2
dist/css/ionic.min.css
vendored
2
dist/css/ionic.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -25,7 +25,7 @@
|
||||
|
||||
text-overflow: ellipsis;
|
||||
font-size: $button-font-size;
|
||||
line-height: $button-height - $button-border-width;
|
||||
line-height: $button-height - $button-border-width + 1px;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
|
||||
@@ -74,7 +74,7 @@ $button-border-radius: 2px;
|
||||
$button-border-width: 1px;
|
||||
|
||||
$button-font-size: 16px;
|
||||
$button-height: 47px;
|
||||
$button-height: 42px;
|
||||
$button-padding: 12px !default;
|
||||
$button-icon-size: 24px;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user