{multiRowSelection && renderCheckBoxCell(false)}
{row.cells.map((cell: any, cellIndex: number) => {
- return (
-
- );
+ const cellProps = cell.getCellProps();
+ if (columns[0]?.columnProperties?.cellBackground) {
+ cellProps.style.background =
+ columns[0].columnProperties.cellBackground;
+ }
+ return
;
})}
);
diff --git a/app/client/src/constants/DefaultTheme.tsx b/app/client/src/constants/DefaultTheme.tsx
index 2a28878f8c82..614e7419a56f 100644
--- a/app/client/src/constants/DefaultTheme.tsx
+++ b/app/client/src/constants/DefaultTheme.tsx
@@ -639,6 +639,15 @@ type ColorType = {
};
};
};
+ /**
+ * LINK button style
+ */
+ link: {
+ main: Color;
+ hover: Color;
+ active: Color;
+ disabled: Color;
+ };
};
tertiary: buttonVariant;
info: buttonVariant;
@@ -1533,6 +1542,12 @@ export const dark: ColorType = {
},
},
},
+ link: {
+ main: "#D4D4D4",
+ hover: "#FFFFFF",
+ active: "#2B2B2B",
+ disabled: "#202021",
+ },
},
tertiary: {
main: "#D4D4D4",
@@ -2025,7 +2040,7 @@ export const light: ColorType = {
activeTabText: "#000",
},
button: {
- disabledText: lightShades[6],
+ disabledText: lightShades[15],
boxShadow: {
default: {
variant1: Colors.BOX_SHADOW_DEFAULT_VARIANT1,
@@ -2124,13 +2139,19 @@ export const light: ColorType = {
},
},
},
+ link: {
+ main: "#716E6E",
+ hover: "#090707",
+ active: "#4B4848",
+ disabled: "#858282",
+ },
},
tertiary: {
main: "#716E6E",
light: "#090707",
- dark: "#F7F7F7",
+ dark: "#FAFAFA",
darker: "#E8E8E8",
- darkest: "#939090",
+ darkest: "#A9A7A7",
},
info: {
main: "#F86A2B",
@@ -2143,22 +2164,22 @@ export const light: ColorType = {
main: "#03B365",
light: "#007340",
dark: "#00693B",
- darker: "#DEFFF0",
- darkest: "#CBF4E2",
+ darker: "#CBF4E2",
+ darkest: "#D9FDED",
},
warning: {
- main: "#FECB11",
- light: "#D1A606",
- dark: "#D9AC07",
- darker: "#FFFBEF",
- darkest: "#FECB11",
+ main: "#FEB811",
+ light: "#EFA903",
+ dark: "#EFA903",
+ darker: "#FBEED0",
+ darkest: "#FFFAE9",
},
danger: {
main: "#F22B2B",
- light: "#C60707",
- dark: "#B90707",
- darker: "#FFF0F0",
- darkest: "#FDE4E4",
+ light: "#B90707",
+ dark: "#C60707",
+ darker: "#FDE4E4",
+ darkest: "#FFE9E9",
},
homepageBackground: "#fafafa",
card: {
diff --git a/app/client/src/constants/messages.ts b/app/client/src/constants/messages.ts
index cffd4b2281b0..7cfbb98231eb 100644
--- a/app/client/src/constants/messages.ts
+++ b/app/client/src/constants/messages.ts
@@ -469,3 +469,9 @@ export const MERGE_CHANGES = () => "Merge Changes";
export const SELECT_BRANCH_TO_MERGE = () => "Select branch to merge";
export const DOWNLOAD_FILE_NAME_ERROR = () => "File name was not provided";
+
+// Comment card tooltips
+export const MORE_OPTIONS = () => "More Options";
+export const ADD_REACTION = () => "Add Reaction";
+export const RESOLVE_THREAD = () => "Resolve Thread";
+export const EMOJI = () => "Emoji";