Web:Components: Add textColorDisabled.

This commit is contained in:
Vlada Gazizova 2022-08-17 15:51:50 +03:00
parent 166d47c359
commit cb8c6741ff
2 changed files with 6 additions and 2 deletions

View File

@ -248,6 +248,7 @@ const Base = {
fontSize: "15px",
fontWeight: 700,
textColor: white,
textColorDisabled: white,
cornerRoundsTopRight: "0",
cornerRoundsBottomRight: "0",
@ -274,6 +275,7 @@ const Base = {
borderLeft: "4px solid transparent",
borderRight: "4px solid transparent",
borderTop: "4px solid white",
borderTopDisabled: `4px solid white`,
right: "10px",
top: "50%",
width: "0",

View File

@ -248,7 +248,8 @@ const Dark = {
lineHeight: "22px",
fontSize: "15px",
fontWeight: 700,
textColor: black,
textColor: "#FFFFFF",
textColorDisabled: black,
cornerRoundsTopRight: "0",
cornerRoundsBottomRight: "0",
@ -274,7 +275,8 @@ const Dark = {
arrowDropdown: {
borderLeft: "4px solid transparent",
borderRight: "4px solid transparent",
borderTop: `4px solid ${black}`,
borderTop: `4px solid ${white}`,
borderTopDisabled: `4px solid ${black}`,
right: "10px",
top: "50%",
width: "0",