mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
re-org themes folder
This commit is contained in:
32
scss/framework/theme/_button.scss
Normal file
32
scss/framework/theme/_button.scss
Normal file
@@ -0,0 +1,32 @@
|
||||
.button {
|
||||
color: $buttonColor;
|
||||
border-radius: $buttonBorderRadius;
|
||||
border-width: $buttonBorderWidth;
|
||||
border-style: solid;
|
||||
padding: $buttonPadding;
|
||||
}
|
||||
|
||||
.button-default {
|
||||
@include button-style($buttonDefaultBackground, $buttonDefaultBorder, $darkColor);
|
||||
}
|
||||
.button-secondary {
|
||||
@include button-style($buttonSecondaryBackground, $buttonSecondaryBorder, $darkColor);
|
||||
}
|
||||
.button-primary {
|
||||
@include button-style($buttonPrimaryBackground, $buttonPrimaryBorder, $lightColor);
|
||||
}
|
||||
.button-info {
|
||||
@include button-style($buttonInfoBackground, $buttonInfoBorder, $lightColor);
|
||||
}
|
||||
.button-success {
|
||||
@include button-style($buttonSuccessBackground, $buttonSuccessBorder, $lightColor);
|
||||
}
|
||||
.button-warning {
|
||||
@include button-style($buttonWarningBackground, $buttonWarningBorder, $lightColor);
|
||||
}
|
||||
.button-danger {
|
||||
@include button-style($buttonDangerBackground, $buttonDangerBorder, $lightColor);
|
||||
}
|
||||
.button-dark {
|
||||
@include button-style($buttonDarkBackground, $buttonDarkBorder, $lightColor);
|
||||
}
|
||||
Reference in New Issue
Block a user