-
-
Notifications
You must be signed in to change notification settings - Fork 629
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui/select, darkmode): fix select disabled color lose, fix darkmod…
…e color affects: @varlet/ui
- Loading branch information
Showing
15 changed files
with
35 additions
and
17 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
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
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,3 +1,3 @@ | ||
export default { | ||
'--button-default-color': '#272727', | ||
'--button-default-color': '#303030', | ||
} |
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,5 +1,5 @@ | ||
export default { | ||
'--collapse-background': '#272727', | ||
'--collapse-background': '#303030', | ||
'--collapse-text-color': '#fff', | ||
'--collapse-border-top': 'thin solid rgba(255, 255, 255, 0.12)', | ||
} |
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,5 +1,5 @@ | ||
export default { | ||
'--date-picker-main-color': '#fff', | ||
'--date-picker-body-background-color': '#272727', | ||
'--date-picker-body-background-color': '#303030', | ||
'--day-picker-head-item-color': '#aaaaaa', | ||
} |
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,4 +1,4 @@ | ||
export default { | ||
'--divider-color': 'rgba(255, 255, 255, 0.12)', | ||
'--divider-color': 'rgba(255, 255, 255, 0.2)', | ||
'--divider-text-color': '#aaa', | ||
} |
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,6 +1,7 @@ | ||
export default { | ||
'--pagination-list-bg-color': '#272727', | ||
'--pagination-list-bg-color': '#303030', | ||
'--pagination-hover-bg-color': '#25293a', | ||
'--pagination-list-active-bg-color': '#25293a', | ||
'--pagination-list-active-color': '#4a7afe', | ||
'--pagination-item-background': '#303030', | ||
} |
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,3 +1,3 @@ | ||
export default { | ||
'--pull-refresh-background': '#272727', | ||
'--pull-refresh-background': '#303030', | ||
} |
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,5 +1,5 @@ | ||
export default { | ||
'--select-select-text-color': '#fff', | ||
'--select-blur-color': 'rgb(255, 255, 255, .7)', | ||
'--select-scroller-background': '#272727', | ||
'--select-scroller-background': '#303030', | ||
} |
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,7 +1,7 @@ | ||
export default { | ||
'--uploader-action-background': '#272727', | ||
'--uploader-action-background': '#303030', | ||
'--uploader-action-icon-color': '#fff', | ||
'--uploader-file-name-background': '#272727', | ||
'--uploader-file-name-background': '#303030', | ||
'--uploader-file-name-color': '#aaa', | ||
'--uploader-file-cover-background': '#272727', | ||
'--uploader-file-cover-background': '#303030', | ||
} |