change button height to 42px, fixes #491

This commit is contained in:
Adam Bradley
2014-01-29 22:31:50 -06:00
parent aac82a1ebb
commit af9354b3e5
5 changed files with 9 additions and 7 deletions

View File

@@ -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
View File

@@ -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; }

View File

File diff suppressed because one or more lines are too long

View File

@@ -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;

View File

@@ -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;