|
|
@@ -12,6 +12,10 @@ $text-color: #808080 !default;
|
|
|
// 特殊禁用色
|
|
|
$disable-color: #cccccc !default;
|
|
|
$white: #fff;
|
|
|
+$black: #000;
|
|
|
+
|
|
|
+// padding
|
|
|
+$padding-xs: 8px 12px;
|
|
|
|
|
|
// Font
|
|
|
$font-size-1: 12px;
|
|
|
@@ -22,8 +26,45 @@ $font-weight-bold: 400;
|
|
|
|
|
|
// button
|
|
|
$button-border-radius: 25px;
|
|
|
-$button-default-bg-color: linear-gradient(135deg, $primary-color 0%, $primary-color-end 100%);
|
|
|
-$button-default-height: 48px;
|
|
|
-$button-default-line-height: 1.2;
|
|
|
-$button-default-font-size: $font-size-3;
|
|
|
-$button-default-color: $white;
|
|
|
+$button-border-width: 1px;
|
|
|
+$button-default-bg-color: #fff;
|
|
|
+$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-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-background-color: linear-gradient(
|
|
|
+ 135deg,
|
|
|
+ rgba(250, 44, 25, 1) 0%,
|
|
|
+ rgba(250, 63, 25, 1) 45%,
|
|
|
+ rgba(250, 89, 25, 1) 83%,
|
|
|
+ rgba(250, 100, 25, 1) 100%
|
|
|
+);
|
|
|
+$button-info-color: #fff;
|
|
|
+$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-background-color: linear-gradient(
|
|
|
+ 135deg,
|
|
|
+ rgba(38, 191, 38, 1) 0%,
|
|
|
+ rgba(39, 197, 48, 1) 45%,
|
|
|
+ rgba(40, 207, 63, 1) 83%,
|
|
|
+ rgba(41, 212, 70, 1) 100%
|
|
|
+);
|
|
|
+
|
|
|
+$button-danger-color: #fff;
|
|
|
+$button-danger-background-color: rgba(250, 44, 25, 1);
|
|
|
+$button-warning-color: #fff;
|
|
|
+$button-warning-background-color: linear-gradient(
|
|
|
+ 135deg,
|
|
|
+ rgba(255, 158, 13, 1) 0%,
|
|
|
+ rgba(255, 167, 13, 1) 45%,
|
|
|
+ rgba(255, 182, 13, 1) 83%,
|
|
|
+ rgba(255, 190, 13, 1) 100%
|
|
|
+);
|
|
|
+$button-plain-background-color: #fff;
|