Skip to content

Commit

Permalink
feat: fix contrats in custom colors grist
Browse files Browse the repository at this point in the history
  • Loading branch information
hexaltation committed Jun 18, 2024
1 parent aaf6152 commit 2185f82
Showing 1 changed file with 41 additions and 2 deletions.
43 changes: 41 additions & 2 deletions dockerfiles/grist/ressources/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
--grist-color-lighter-blue: #0078f3 !important;
--grist-color-light-blue: #0063cb !important;
--grist-color-cursor: #000091 !important;
--grist-color-selection: rgba(128,128,254,0.15) !important;
--grist-color-selection: rgba(137,137,243,0.15) !important;
--grist-color-selection-opaque: #ececfe !important;
--grist-color-selection-darker-opaque: #e3e3fd !important;
--grist-color-inactive-cursor: #cacafb !important;
Expand All @@ -42,11 +42,12 @@
--grist-control-border: 1px solid #2323ff !important;
--grist-toast-bg: #040404 !important;

/* Custom inputs colors*/
/* Custom inputs tags colors*/
--grist-actual-cell-color: #6e6ef2 !important;
--accent-color: #6e6ef2 !important;
}

/* START Custom ACL colors */
.test-rule-permissions [class*=deny] {
background-color: #ff0000;
background-image: linear-gradient(-45deg, #ff0000 14px, white 15px 16px, #ff0000 16px);
Expand All @@ -57,3 +58,41 @@
background-color: #16b378;
border-color: #16b378;
}
/* END Custom ACL colors */

/* START Custom document card in home page colors */
.test-dm-public {
--icon-color: #cecece !important;
}

.test-dm-pinned-initials {
border-color: #cecece !important;
}
/* END Custom document card in home page colors */

/* START Custom tooltip colors */
.test-tooltip {
background-color: rgba(255, 255, 255, 0.8) !important;
color: #666666 !important;
}

.test-tooltip-close [style*=CrossSmall]{
background-color: #929292;
}
/* END Custom tooltip colors */

/* START Custom Fullframe Card View Colors */
.test-close-button {
--icon-color: #929292 !important;
}

.test-close-button:hover {
--icon-color: #cecece !important;
}
/* END Custom Fullframe Card View Colors */

/* START Custom toast notification Colors */
.test-notifier-toast-custom-action {
color:#cacafb !important;;
}
/* END Custom toast notification Colors */

0 comments on commit 2185f82

Please sign in to comment.