|
|
@@ -27,18 +27,21 @@ $font-weight-bold: 400;
|
|
|
// button
|
|
|
$button-border-radius: 25px;
|
|
|
$button-border-width: 1px;
|
|
|
-$button-default-bg-color: #fff;
|
|
|
+$button-default-bg-color: $white;
|
|
|
$button-default-border-color: rgba(204, 204, 204, 1);
|
|
|
$button-default-color: rgba(102, 102, 102, 1);
|
|
|
$button-small-height: 28px;
|
|
|
$button-default-height: 38px;
|
|
|
$button-large-height: 48px;
|
|
|
+$button-large-line-height: 46px;
|
|
|
+$button-small-line-height: 26px;
|
|
|
$button-block-height: 48px;
|
|
|
$button-default-line-height: 36px;
|
|
|
$button-block-line-height: 46px;
|
|
|
$button-default-font-size: $font-size-2;
|
|
|
$button-disabled-opacity: 0.68;
|
|
|
-$button-primary-color: #fff;
|
|
|
+$button-primary-color: $white;
|
|
|
+$button-primary-border-color: rgba(250, 44, 25, 1);
|
|
|
$button-primary-background-color: linear-gradient(
|
|
|
135deg,
|
|
|
rgba(250, 44, 25, 1) 0%,
|
|
|
@@ -46,9 +49,11 @@ $button-primary-background-color: linear-gradient(
|
|
|
rgba(250, 89, 25, 1) 83%,
|
|
|
rgba(250, 100, 25, 1) 100%
|
|
|
);
|
|
|
-$button-info-color: #fff;
|
|
|
+$button-info-color: $white;
|
|
|
+$button-info-border-color: rgba(73, 106, 242, 1);
|
|
|
$button-info-background-color: linear-gradient(315deg, rgba(73, 143, 242, 1) 0%, rgba(73, 101, 242, 1) 100%);
|
|
|
-$button-success-color: #fff;
|
|
|
+$button-success-color: $white;
|
|
|
+$button-success-border-color: rgba(38, 191, 38, 1);
|
|
|
$button-success-background-color: linear-gradient(
|
|
|
135deg,
|
|
|
rgba(38, 191, 38, 1) 0%,
|
|
|
@@ -57,9 +62,11 @@ $button-success-background-color: linear-gradient(
|
|
|
rgba(41, 212, 70, 1) 100%
|
|
|
);
|
|
|
|
|
|
-$button-danger-color: #fff;
|
|
|
+$button-danger-color: $white;
|
|
|
+$button-danger-border-color: rgba(250, 44, 25, 1);
|
|
|
$button-danger-background-color: rgba(250, 44, 25, 1);
|
|
|
-$button-warning-color: #fff;
|
|
|
+$button-warning-color: $white;
|
|
|
+$button-warning-border-color: rgba(255, 158, 13, 1);
|
|
|
$button-warning-background-color: linear-gradient(
|
|
|
135deg,
|
|
|
rgba(255, 158, 13, 1) 0%,
|
|
|
@@ -67,4 +74,4 @@ $button-warning-background-color: linear-gradient(
|
|
|
rgba(255, 182, 13, 1) 83%,
|
|
|
rgba(255, 190, 13, 1) 100%
|
|
|
);
|
|
|
-$button-plain-background-color: #fff;
|
|
|
+$button-plain-background-color: $white;
|