mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-26 08:13:34 +08:00
Buttons shtuff
This commit is contained in:
@ -2,10 +2,10 @@
|
||||
// Core Button Variables
|
||||
// --------------------------------------------------
|
||||
|
||||
$button-font-size: 1.4rem !default;
|
||||
$button-font-size: 1.6rem !default;
|
||||
$button-margin: 0.4rem 0 !default;
|
||||
$button-padding: 0 1.4rem !default;
|
||||
$button-height: 4.2rem !default;
|
||||
$button-padding: 0 2rem !default;
|
||||
$button-height: 4.4rem !default;
|
||||
$button-border-width: 1px !default;
|
||||
$button-border-radius: 4px !default;
|
||||
$button-icon-size: 2.5rem !default;
|
||||
@ -22,6 +22,9 @@ $button-small-icon-size: 2.1rem !default;
|
||||
|
||||
$button-fab-size: 56px;
|
||||
|
||||
$button-round-border-radius: 64px !default;
|
||||
$button-round-padding: 0 2.6rem !default;
|
||||
|
||||
// Core Button
|
||||
// --------------------------------------------------
|
||||
|
||||
@ -130,6 +133,11 @@ button,
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
&[round] {
|
||||
border-radius: $button-round-border-radius;
|
||||
padding: $button-round-padding;
|
||||
}
|
||||
|
||||
// FABulous buttons (Floating action button from material)
|
||||
|
||||
&[fab] {
|
||||
|
Reference in New Issue
Block a user