From 2185f82bf610fdcf4448ba2cb1c599d65af2dffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Cutzach?= Date: Mon, 17 Jun 2024 17:23:27 +0200 Subject: [PATCH] feat: fix contrats in custom colors grist --- dockerfiles/grist/ressources/custom.css | 43 +++++++++++++++++++++++-- 1 file changed, 41 insertions(+), 2 deletions(-) diff --git a/dockerfiles/grist/ressources/custom.css b/dockerfiles/grist/ressources/custom.css index 1c2c9a2..a996fbc 100644 --- a/dockerfiles/grist/ressources/custom.css +++ b/dockerfiles/grist/ressources/custom.css @@ -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; @@ -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); @@ -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 */