-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
shijia.sj
committed
Nov 8, 2024
1 parent
400c312
commit 40e32b8
Showing
4 changed files
with
24 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
@import (reference) '../style/variables.less'; | ||
@import (reference) '../style/themes/index.less'; | ||
|
||
@rate-active-icon: var(--color-yellow, @COLOR_YELLOW); | ||
@rate-icon-color: var(--color-border, @COLOR_BORDER); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
@import (reference) '../style/variables.less'; | ||
@import (reference) '../style/themes/index.less'; | ||
|
||
// 图片尺寸 | ||
@result-img-size: 128 * @rpx; | ||
// 主区域背景 | ||
@result-main-background: @COLOR_CARD; | ||
@result-main-background: var(--color-card, @COLOR_CARD); | ||
// 左右边距 | ||
@result-spacing-LR: @h-spacing-large; | ||
// 主标题颜色 | ||
@result-title-color: #000000; | ||
@result-title-color: var(--color-black, @COLOR_BLACK); | ||
// 主标题大小 | ||
@result-title-size: 40 * @rpx; | ||
// 描述颜色 | ||
@result-desc-color: #333333; | ||
@result-desc-color: var(--color-text-primary, @COLOR_TEXT_PRIMARY); | ||
// 描述大小 | ||
@result-desc-size: 32 * @rpx; | ||
|
||
@result-success-color: var(--color-brand1, @COLOR_BRAND1); | ||
|
||
@result-error-color: var(--color-text-warning, @COLOR_TEXT_WARNING); | ||
|
||
@result-warning-color: var(--color-orange-1, @COLOR_ORANGE_1); | ||
|
||
@result-wait-color: var(--color-pomonagreen-1, @COLOR_POMONAGREEN_1); |